POST
/
return
curl --request POST \
  --url https://api.shipbob.com/1.0/return \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'shipbob_channel_id: <shipbob_channel_id>' \
  --data '{
  "fulfillmentCenter": {
    "id": 0,
    "name": "string"
  },
  "inventory": [
    {
      "id": 0,
      "lotDate": "2019-08-24T14:15:22Z",
      "lotNumber": "string",
      "quantity": 0,
      "requestedAction": 0
    }
  ],
  "originalShipmentId": 0,
  "referenceId": "string",
  "trackingNumber": "string"
}'

Authorizations

Authorization
string
header
required

Provide your personal access token in the format 'Bearer {your_personal_access_token}'

Headers

shipbob_channel_id
string
required
creationSourceId
number

Body

application/json
fulfillmentCenter
object
inventory
object[] | null
originalShipmentId
integer | null
referenceId
string | null
trackingNumber
string | null

Response

200

Success

Was this page helpful?