POST Create a return
Use the POST method to send a new return
If the return is successfully created, you'll receive a 201 Created response.
Request
POST /v2/inbound/{return_number}
- Each request contains only one return.
- The return_number in the URL must match the number field in the body of the request.
- The request body is the return resource.
| Field name | Data type | Description |
|---|---|---|
| number | string | The number associated with this return; must match the return_number in the URL |
| business_unit | string | Your company code in our system |
| line_items | array | The items in the return
The following fields must be included in each line entry
|
Response JSON
{
"success": true
}