Skip to main content
GET
/
category
/
v1
/
libraries
/
{libraryId}
/
categories
/
{categoryId}
/
allvalueshierarchy
cURL
curl --request GET \
  --url https://aodocs.altirnao.com/api/category/v1/libraries/{libraryId}/categories/{categoryId}/allvalueshierarchy \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "ancestors": "<array>",
      "id": "<string>",
      "kind": "<string>",
      "leaf": true,
      "leafInNotOutdatedTree": true,
      "name": "<string>",
      "name_i18n": "<string>",
      "outdated": true,
      "parentId": "<string>",
      "shortName": "<string>",
      "value": "<string>"
    }
  ],
  "kind": "<string>",
  "nextPageToken": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

libraryId
string
required

The ID of the library

categoryId
string
required

The ID of the category

Query Parameters

limit
integer<int32>

The maximum number of category values to return per page. This parameter must be provided when using a 'nextPageToken'.

nextPageToken
string

The token for continuing a previous list request on the next page

securityCode
string

The security code

domain
string

The G Suite domain

Response

200 - application/json

A ApiCategoryValueList response

items
object[]
kind
string
nextPageToken
string