For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DocumentationAPI Reference
DocumentationAPI Reference
  • API Reference
      • 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
      • POSTUsed to Create a new Channel Metadata Entry for a given Variant
      • GETGet Packaging Requirement
      • GETGet Taxonomy by Id
LogoLogo
API ReferenceProducts

Get Taxonomy Parent by Id

||View as Markdown|
GET
https://sandbox-api.shipbob.com/2.0/taxonomy/:id/parent
GET
/2.0/taxonomy/:id/parent
$curl https://sandbox-api.shipbob.com/2.0/taxonomy/1/parent \
> -H "Authorization: Bearer <token>"
1{
2 "children": [
3 {
4 "has_children": true,
5 "id": 0,
6 "name": "string",
7 "path": "string"
8 }
9 ],
10 "id": 0,
11 "name": "string",
12 "parent": {
13 "id": 0,
14 "name": "string",
15 "path": "string"
16 },
17 "path": "string"
18}
Was this page helpful?
Previous

Used to delete a specific channel metadata record from a variant by channel metadata ID

Next

Get Taxonomies

Built with

Authentication

AuthorizationBearer

Authentication using Personal Access Token (PAT) token

OR
AuthorizationBearer
OAuth2 authentication using JWT tokens

Path parameters

idintegerRequired

Response

Success
childrenlist of objects
idinteger
namestring
parentobject or null
pathstring

Errors

401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error
503
Service Unavailable Error