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
Products
Gets Packaging Requirement
GET
/
packaging-requirement
curl --request GET \
--url https://api.shipbob.com/experimental/packaging-requirement \
--header 'Authorization: Bearer <token>'
[
{
"applicable_categories": [
{
"id": 0,
"sub_category_ids": [
0
]
}
],
"applicable_packaging_material_types": [
{
"id": 0,
"name": "string"
}
],
"applicable_taxonomy": [
"string"
],
"description": "string",
"id": 0,
"name": "string"
}
]
Authorizations
Authentication using Personal Access Token (PAT) token
Response
200 - application/json
Success
The response is of type object[]
.
Was this page helpful?
curl --request GET \
--url https://api.shipbob.com/experimental/packaging-requirement \
--header 'Authorization: Bearer <token>'
[
{
"applicable_categories": [
{
"id": 0,
"sub_category_ids": [
0
]
}
],
"applicable_packaging_material_types": [
{
"id": 0,
"name": "string"
}
],
"applicable_taxonomy": [
"string"
],
"description": "string",
"id": 0,
"name": "string"
}
]
Assistant
Responses are generated using AI and may contain mistakes.