GET
/
taxonomy
curl --request GET \
  --url https://api.shipbob.com/experimental/taxonomy \
  --header 'Authorization: <api-key>'
[
  {
    "children": [
      {
        "has_children": true,
        "id": 0,
        "name": "string",
        "path": "string"
      }
    ],
    "id": 0,
    "name": "string",
    "parent": {
      "id": 0,
      "name": "string",
      "path": "string"
    },
    "path": "string"
  }
]

Authorizations

Authorization
string
header
required

Provide your personal access token in the format 'Bearer {your_personal_access_token}'

Query Parameters

Response

200
application/json
Success
id
integer
name
string | null
path
string | null
children
object[] | null
parent
object