Webhooks
Orders
- POSTCancel one Shipment by Order Id and Shipment Id
- POSTEstimate Fulfillment Cost For Order
- GETGet shipping methods
- GETGet one Shipment by Order Id and Shipment Id
- GETGet Orders
- POSTCreate Order
- POSTCancel single Order by Order ID
- GETGet all Shipments for Order
- POSTCancel one Shipment by Shipment Id
- GETGet Order Store Json
- POSTSave the Store Order Json
- GETGet one Shipment by Shipment Id
- PUTUpdate a Shipment
- GETGet logs for one Shipment by Shipment Id
- POSTCancel multiple Shipments by Shipment Id
- GETGet one Shipment's status timeline by Order Id and Shipment Id
- GETGet Order
- GETGet one Shipment's status timeline by Shipment Id
- GETGet logs for one Shipment by Order Id and Shipment Id
- POSTUpdate Tracking Uploaded Status for Multiple Shipments by Shipment Id
Locations
Receiving
Returns
Products
- GETGet Product
- PATCHUpdate a single product with Json Merge Patch functionality
- GETRetrieves List of Products based on filters provided
- POSTCreate single product to the store
- PUTUpdate specific channel metadata record from a variant by channel metadata ID
- DELUsed to delete a specific channel metadata record from a variant by channel metadata ID
- GETGet Taxonomy Parent by Id
- GETGet Taxonomies
- GETGet Taxonomy by Id
- GETGet Packaging Requirement
- POSTUsed to Create a new Channel Metadata Entry for a given Variant
Channels
Inventory
Returns
Create Return Order
Returns
Create Return Order
POST
/
return
curl --request POST \
--url https://api.shipbob.com/2.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
Required string length:
1 - 50
Maximum length:
500
Response
200
Success
Was this page helpful?
curl --request POST \
--url https://api.shipbob.com/2.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"
}'