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 Taxonomies

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

Get Taxonomy Parent by Id

Next

Used to Create a new Channel Metadata Entry for a given Variant

Built with

Authentication

AuthorizationBearer

Authentication using Personal Access Token (PAT) token

OR
AuthorizationBearer
OAuth2 authentication using JWT tokens

Query parameters

searchstringOptional

Response

Success
childrenlist of objects
idinteger
namestring
parentobject or null
pathstring

Errors

401
Unauthorized Error
403
Forbidden Error
500
Internal Server Error
503
Service Unavailable Error