Channels
Receiving
Inventories
Products
- 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
- POSTCreate a new Channel Metadata Entry for a given Variant
- POSTMigrates existing variants to a new product
- GETGets Packaging Requirement
- GETGets Taxonomy by Id
- GETGets Taxonomy
- POSTMigrates variants to existing product
- POSTAdd new product variants to a product
- GETGets Product by Id
- DELDeletes Bundle and removes associations to related products
- PATCHUpdate a single product with Json Merge Patch functionality
- POSTUsed to merge two or more variants together
- GETGets Taxonomy Parent
- GETGets multiple product variants
- POSTAdds new product variants to a product
- PATCHUpdates multiple product variants
- GETRetrieves List of Products based on filters provided
- POSTCreate single product to the store
Receiving
Set ExternalSync flag for Wros
POST
/
receiving
/
:set-external-sync
curl --request POST \
--url https://api.shipbob.com/experimental/receiving/:set-external-sync \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"ids": [
0
],
"is_external_sync": true
}'
{
"box_labels_uri": "https://api.shipbob.com/1.0/receiving/1/labels",
"box_packaging_type": "EverythingInOneBox",
"expected_arrival_date": "2019-08-24T14:15:22Z",
"external_sync_timestamp": "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
Body
application/json
The list of wro ids and a flag to enable external sync
The body is of type object
.
Response
200
application/json
Success
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.shipbob.com/experimental/receiving/:set-external-sync \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"ids": [
0
],
"is_external_sync": true
}'
{
"box_labels_uri": "https://api.shipbob.com/1.0/receiving/1/labels",
"box_packaging_type": "EverythingInOneBox",
"expected_arrival_date": "2019-08-24T14:15:22Z",
"external_sync_timestamp": "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"
}
Assistant
Responses are generated using AI and may contain mistakes.