Skip to main content
GET
/
referenceCatalog
/
v1
/
{catalogId}
/
items
cURL
curl --request GET \
  --url https://aodocs.altirnao.com/api/referenceCatalog/v1/{catalogId}/items \
  --header 'Authorization: Bearer <token>'
{
  "kind": "<string>",
  "nextPageToken": "<string>",
  "referenceCatalogValues": [
    {
      "createdAt": 123,
      "deleted": true,
      "id": "<string>",
      "kind": "<string>",
      "lastModifiedAt": 123,
      "leaf": true,
      "level": 123,
      "name": "<string>",
      "parent": "<string>",
      "parentIds": [
        "<string>"
      ],
      "rank": 123,
      "referenceCatalogId": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

catalogId
string
required

The ID of the reference catalog

Query Parameters

nextPageToken
string

DEPRECATED. Use pageToken instead.

pageToken
string

The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response.

parent
string

parent

expandDepth
integer<int32>
default:0

expandDepth

limit
integer<int32>
default:50

The maximum number of reference catalog values per page. (Default: 50)

order
enum<string>
default:NAME

The field on which to order the reference catalog values ('NAME' (default) in order A-Z then a-z).

Available options:
ID,
NAME,
CREATION_DATE,
RANK
securityCode
string

The security code

domain
string

The G Suite domain

dontIncludeDeleted
boolean
default:false

Whether to include deleted reference catalog values

Response

200 - application/json

A ApiReferenceCatalogValuePageableList response

kind
string
nextPageToken
string
referenceCatalogValues
object[]