Skip to main content
GET
/
2026-01
/
taxonomy
/
{id}
/
parent
Get Taxonomy Parent
curl --request GET \
  --url https://sandbox-api.shipbob.com/2026-01/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<int32>
required

Response

Success

id
integer<int32>

Unique identifier for the taxonomy node

name
string | null

Display name of the taxonomy category

path
string | null

Full hierarchical path of the taxonomy (e.g., 'Electronics > Computers > Laptops')

children
object[] | null

Child taxonomy nodes that belong to this category

parent
object

Parent taxonomy node in the category hierarchy