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
Receiving
Cancel Warehouse Receiving Order
Receiving
Cancel Warehouse Receiving Order
POST
/
receiving
/
{id}
/
cancel
curl --request POST \
--url https://api.shipbob.com/2.0/receiving/{id}/cancel \
--header 'Authorization: Bearer <token>'
{
"box_labels_uri": "https://api.shipbob.com/1.0/receiving/1/labels",
"box_packaging_type": "EverythingInOneBox",
"expected_arrival_date": "2019-08-24T14:15:22Z",
"fulfillment_center": {
"address1": "5900 W Ogden Ave",
"address2": "Suite 100",
"city": "Cicero",
"country": "USA",
"email": "[email protected]",
"id": 0,
"name": "Cicero (IL)",
"phone_number": "555-555-5555",
"state": "IL",
"timezone": "Central Standard Time",
"zip_code": "60804"
},
"id": 0,
"insert_date": "2019-08-24T14:15:22Z",
"inventory_quantities": [
{
"expected_quantity": 0,
"inventory_id": 0,
"received_quantity": 0,
"sku": "string",
"stowed_quantity": 0
}
],
"last_updated_date": "2019-08-24T14:15:22Z",
"package_type": "Package",
"purchase_order_number": "string",
"status": "Awaiting"
}
Authorizations
Authentication using Personal Access Token (PAT) token
Path Parameters
Id of the receiving order to cancel
Response
200
application/json
Success
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.shipbob.com/2.0/receiving/{id}/cancel \
--header 'Authorization: Bearer <token>'
{
"box_labels_uri": "https://api.shipbob.com/1.0/receiving/1/labels",
"box_packaging_type": "EverythingInOneBox",
"expected_arrival_date": "2019-08-24T14:15:22Z",
"fulfillment_center": {
"address1": "5900 W Ogden Ave",
"address2": "Suite 100",
"city": "Cicero",
"country": "USA",
"email": "[email protected]",
"id": 0,
"name": "Cicero (IL)",
"phone_number": "555-555-5555",
"state": "IL",
"timezone": "Central Standard Time",
"zip_code": "60804"
},
"id": 0,
"insert_date": "2019-08-24T14:15:22Z",
"inventory_quantities": [
{
"expected_quantity": 0,
"inventory_id": 0,
"received_quantity": 0,
"sku": "string",
"stowed_quantity": 0
}
],
"last_updated_date": "2019-08-24T14:15:22Z",
"package_type": "Package",
"purchase_order_number": "string",
"status": "Awaiting"
}