GET
/
taxonomy
/
{id}
curl --request GET \
  --url https://api.shipbob.com/experimental/taxonomy/{id} \
  --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}'

Path Parameters

id
string
required

Response

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

Was this page helpful?