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 Taxonomy Parent
GET
/
taxonomy
/
{id}
/
parent
curl --request GET \
--url https://api.shipbob.com/experimental/taxonomy/{id}/parent \
--header 'Authorization: Bearer <token>'
{
"children": [
{
"has_children": true,
"id": 0,
"name": "string",
"path": "string"
}
],
"id": 0,
"name": "string",
"parent": {
"id": 0,
"name": "string",
"path": "string"
},
"path": "string"
}
Authorizations
Authentication using Personal Access Token (PAT) token
Path Parameters
Response
200
application/json
Success
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.shipbob.com/experimental/taxonomy/{id}/parent \
--header 'Authorization: Bearer <token>'
{
"children": [
{
"has_children": true,
"id": 0,
"name": "string",
"path": "string"
}
],
"id": 0,
"name": "string",
"parent": {
"id": 0,
"name": "string",
"path": "string"
},
"path": "string"
}
Assistant
Responses are generated using AI and may contain mistakes.