Webhooks
Products
Inventory
Orders
- POSTCancel one Shipment by Shipment Id
- GETGet one Shipment's status timeline by Shipment Id
- GETGet Orders
- POSTCreate Order
- GETGet one Shipment by Order Id and Shipment Id
- GETGet logs for one Shipment by Shipment Id
- GETGet all Shipments for Order
- GETGet one Shipment's status timeline by Order Id and Shipment Id
- GETGet one Shipment by Shipment Id
- PUTUpdate a Shipment
- GETGet logs for one Shipment by Order Id and Shipment Id
- POSTCancel multiple Shipments by Shipment Id
- POSTEstimate Fulfillment Cost For Order
- GETGet shipping methods
- POSTCancel single Order by Order ID
- GETGet Order Store Json
- POSTSave the Store Order Json
- GETGet Order
- POSTCancel one Shipment by Order Id and Shipment Id
Locations
Receiving
- GETGet Fulfillment Centers
- GETGet Warehouse Receiving Order Box Labels (DEPRECATED)
- POSTCancel Warehouse Receiving Order (DEPRECATED)
- GETGet a Warehouse Receiving Order by Purchase Order Number (DEPRECATED)
- POSTCreate Warehouse Receiving Order (DEPRECATED)
- GETGet Warehouse Receiving Order (DEPRECATED)
Returns
Channels
Returns
Create Return Order
Returns
Create Return Order
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
Provide your personal access token in the format 'Bearer {your_personal_access_token}'
Body
application/json
Response
200
Success
Was this page helpful?
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"
}'