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

Authorization
string
header
required

Authentication using Personal Access Token (PAT) token

Path Parameters

id
string
required

Response

200
application/json

Success

The response is of type object.