List taxonomies

get

/content/management/api/v1.1/taxonomies

This resource returns a list of available taxonomies that can be filtered by the taxonomy's status as provided in the query expression. You can control the number of items to be fetched, paginated, and sorted. Refer to the query syntax description to see the limitations.

Request

Query Parameters
  • This parameter is used to control the returned fields for a taxonomy. This parameter accepts a comma-separated list of field names or all. These fields will be returned for each taxonomy in the list. As all the field names are case-sensitive, users must provide the correct field names in the query. Each taxonomy has both standard fields (id, name, description, shortName, status, version, isPublishable, isForSiteManagement, customProperties, createdBy, createdDate, updatedBy, updatedDate) and additional fields (availableStates, publishedChannels, categoryProperties and roleName). When fields is specified as all (case-insensitive), all the standard and additional fields are returned. The standard fields are always returned in the response and cannot be filtered out. Taxonomy in "draft" state will not have a version. Users can only filter out the additional fields. Users cannot expand the categoryProperties sub-resource while reading a taxonomy but a link to the sub-resource API will be returned. This parameter is optional in the query and by default result shows only standard fields in the response. Any incorrect or invalid field name given in the query will result in error.

    This returns all standard fields along with the additional field availableStates for each taxonomy.
    Example: ?fields=availableStates

    This returns all standard fields along with the additional fields availableStates and publishedChannels for each taxonomy.
    Example: ?fields=availableStates,publishedChannels

    This returns all standard fields along with all additional fields (availableStates and publishedChannels) and a link to the sub-resource categoryProperties for each taxonomy.
    Example: ?fields=all
  • This parameter accepts a non negative integer and is used to control the size of the result.
    Default Value: 100
  • This parameter accepts a non negative integer and is used to control the start index of the result.
    Default Value: 0
  • Order by results.
    Default Value: name:asc
  • This parameter accepts a query expression condition that matches the field values. Query conditions can be joined using AND operators and grouped with parentheses. The value of a query condition follows the format of {fieldName} {operator} "{fieldValue}". The only field names allowed are status, version, name, shortName, roleName and repositoryId. A query cannot include multiple status, version, name, shortName, roleName or repositoryId fieldNames. Both name and shortName cannot be specified in the same query.
    If no value is provided for status it defaults to "promoted". When listing taxonomies, status can be equal to "draft", "promoted" or "all". When listing taxonomies, roleName can be equal to "viewer", "editor" or "manager". If status is equals to "all", all taxonomies will be retrieved - if a taxonomy is currently available in both "draft" and "promoted" states, only "draft" will be returned. In case status equals to "all" is used in other endpoints, an error will be returned.
    The only value allowed in the operator is eq (Equals) for status, version, shortName, roleName and repositoryId.
    The only value allowed in the operator is co (Contains) for name.

    When updating a taxonomy the query parameter should always be provided with status set to "draft" as the default status is "promoted" and a promoted taxonomy cannot be modified.

    Example:
    https://{cecsdomain}/content/management/api/v1.1/taxonomies?q=(status eq "draft")
    Example:
    https://{cecsdomain}/content/management/api/v1.1/taxonomies?q=(status eq "promoted")
  • This parameter accepts a boolean flag. If specified as true, then the returned result must include the total result count.
    Default Value: false
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : Taxonomies
Type: object
Taxonomies
Show Source
Nested Schema : aggregationResults
Type: array
Aggregation results.
Show Source
Nested Schema : items
Type: array
Singular resources contained in the collection.
Show Source
Nested Schema : pinned
Type: array
Pinned items. Shows items pinned at the top of search list
Show Source
Nested Schema : AggregationResult
Type: object
Show Source
Nested Schema : TaxonomyInCollection
Type: object
Taxonomy in Collection Response
Show Source
Nested Schema : availableStates
Type: array
List all states of the Taxonomy. This is an optional property and is only returned if requested in the fields parameter. It is ignored in post/put requests.
Show Source
Nested Schema : ItemSubResourceListCategoryPropertyDefinition
Type: object
Item SubResource.
Show Source
Nested Schema : date
Type: object
date
Show Source
Nested Schema : customProperties
Type: object
Additional Properties Allowed
Show Source
Custom properties of the Taxonomy. This consists of a name value pairs defined by the user. Single entries cannot be updated, the entire list of custom properties have to be provided to update entries.
Nested Schema : TaxonomyStatus
Type: object
TaxonomyStatus
Show Source
Nested Schema : jobs
Type: array
Show Source
Nested Schema : TaxonomyJobInfo
Type: object
TaxonomyJobInfo
Show Source
Nested Schema : data
Type: array
Show Source
Nested Schema : CategoryPropertyDefinition
Type: object
Category Property Definition
Show Source
Nested Schema : defaultValues
Type: array
Default values for the property.
Show Source
Nested Schema : PropertySettingsBean
Type: object
Show Source
Nested Schema : PropertySettingsCaasBean
Type: object
Show Source
Nested Schema : customValidators
Type: array
Custom validators for the property value.
Show Source
Nested Schema : PropertySettingsEditorBean
Type: object
Show Source
Nested Schema : PropertySettingsValueCountRangeBean
Type: object
Show Source
Nested Schema : PropertySettingsValidatorBean
Type: object
Show Source
Nested Schema : options
Type: object
Additional Properties Allowed
Show Source
Validator details.
Nested Schema : additionalProperties
Type: object
Nested Schema : options
Type: object
Additional Properties Allowed
Show Source
Options of the property value.
Nested Schema : additionalProperties
Type: object

400 Response

Bad request.

403 Response

Forbidden.

500 Response

Internal server error.
Back to Top

Examples

The following examples show how to fetch the promoted and draft taxonomies by submitting a GET request using cURL.

curl -X GET -H 'Accept: application/json' 'https://host:port/content/management/api/v1.1/taxonomies'

Example 1:

This returns a list of promoted (default) taxonomies.

/content/management/api/v1.1/taxonomies

Response Body

{
  "hasMore": false,
  "offset": 0,
  "count": 4,
  "limit": 100,
  "items": [
    {
      "id": "5D5AF080B7824C49950443A7D51DE950",
      "name": "Taxonomy 1",
      "description": "",
      "shortName": "T1",
      "status": "promoted",
      "version": 4,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-01-31T19:52:45.472Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:43.854Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "22ED0446197F49B490619206DEC71482",
      "name": "Taxonomy 2",
      "description": "Some description",
      "shortName": "T2",
      "status": "promoted",
      "version": 5,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:48:25.082Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:52.936Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/22ED0446197F49B490619206DEC71482",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "D7969D6CA0D144AEA9CCA88BA6D2CF81",
      "name": "Taxonomy 3",
      "description": "Another description",
      "shortName": "T3",
      "status": "promoted",
      "version": 6,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:49:08.832Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:50:00.951Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/D7969D6CA0D144AEA9CCA88BA6D2CF81",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "FB8240D6DC70407F87ED111325D06F89",
      "name": "Organization1",
      "description": "organization one taxonomy",
      "shortName": "ORG",
      "status": "promoted",
      "version": 1,
      "isPublishable": false,
      "isForSiteManagement": true,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2022-12-14T07:15:17.269Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2022-12-14T07:22:38.724Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/FB8240D6DC70407F87ED111325D06F89",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?offset=0",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?offset=0",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}

Example 2:

This returns a list of draft taxonomies.

/content/management/api/v1.1/taxonomies?q=(status eq \"draft\")

Response Body

{
  "hasMore": false,
  "offset": 0,
  "count": 3,
  "limit": 100,
  "items": [
    {
      "id": "5D5AF080B7824C49950443A7D51DE950",
      "name": "Taxonomy 1",
      "description": "",
      "shortName": "T1",
      "status": "draft",
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:50:09.286Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:50:09.286Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hoastname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950?q=(status eq \"draft\")",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "22ED0446197F49B490619206DEC71482",
      "name": "Taxonomy 2",
      "description": "Some description",
      "shortName": "T2",
      "status": "draft",
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:50:17.648Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:50:17.648Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hoastname>/content/management/api/v1.1/taxonomies/22ED0446197F49B490619206DEC71482?q=(status eq \"draft\")",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "D7969D6CA0D144AEA9CCA88BA6D2CF81",
      "name": "Taxonomy 3",
      "description": "Another description",
      "shortName": "T3",
      "status": "draft",
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:50:26.936Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:50:26.936Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hoastname>/content/management/api/v1.1/taxonomies/D7969D6CA0D144AEA9CCA88BA6D2CF81?q=(status eq \"draft\")",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?q=(status eq \"draft\")",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?q=(status eq \"draft\")",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=0&q=(status eq \"draft\")",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=0&q=(status eq \"draft\")",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}

Example 3:

This returns a list of promoted taxonomies from offset=1.

/content/management/api/v1.1/taxonomies?offset=1

Response Body

{
  "hasMore": false,
  "offset": 1,
  "count": 2,
  "limit": 100,
  "items": [
    {
      "id": "22ED0446197F49B490619206DEC71482",
      "name": "Taxonomy 2",
      "description": "Some description",
      "shortName": "T2",
      "status": "promoted",
      "version": 5,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:48:25.082Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:52.936Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hoastname>/content/management/api/v1.1/taxonomies/22ED0446197F49B490619206DEC71482?offset=1",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "D7969D6CA0D144AEA9CCA88BA6D2CF81",
      "name": "Taxonomy 3",
      "description": "Another description",
      "shortName": "T3",
      "status": "promoted",
      "version": 6,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:49:08.832Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:50:00.951Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hoastname>/content/management/api/v1.1/taxonomies/D7969D6CA0D144AEA9CCA88BA6D2CF81?offset=1",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=1",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=1",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=0",
      "rel": "prev",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=0",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=1",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}

Example 4:

This returns a list of promoted taxonomies from offset=1 and 1 item per page.

/content/management/api/v1.1/taxonomies?offset=1&limit=1

Response Body

{
  "hasMore": true,
  "offset": 1,
  "count": 1,
  "limit": 1,
  "items": [
    {
      "id": "22ED0446197F49B490619206DEC71482",
      "name": "Taxonomy 2",
      "description": "Some description",
      "shortName": "T2",
      "status": "promoted",
      "version": 5,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:48:25.082Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:52.936Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hoastname>/content/management/api/v1.1/taxonomies/22ED0446197F49B490619206DEC71482?offset=1&limit=1",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=1&limit=1",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=1&limit=1",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=0&limit=1",
      "rel": "prev",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=2&limit=1",
      "rel": "next",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=0&limit=1",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hoastname>/content/management/api/v1.1/taxonomies?offset=2&limit=1",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}

Example 5:

This lists all the promoted taxonomies as well as the optional field 'availableStates'.

/content/management/api/v1.1/taxonomies?fields=availableStates

Response Body

{
  "hasMore": false,
  "offset": 0,
  "count": 3,
  "limit": 100,
  "items": [
    {
      "id": "5D5AF080B7824C49950443A7D51DE950",
      "name": "Taxonomy 1",
      "description": "",
      "shortName": "T1",
      "status": "promoted",
      "version": 4,
      "isPublishable": false,
      "isForSiteManagement": false,
      "availableStates": [
        {
          "status": "promoted",
          "version": 4,
          "published": false
        },
        {
          "status": "draft",
          "published": false
        }
      ],
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-01-31T19:52:45.472Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:43.854Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950?fields=availableStates",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "22ED0446197F49B490619206DEC71482",
      "name": "Taxonomy 2",
      "description": "Some description",
      "shortName": "T2",
      "status": "promoted",
      "version": 5,
      "isPublishable": false,
      "isForSiteManagement": false,
      "availableStates": [
        {
          "status": "promoted",
          "version": 5,
          "published": false
        },
        {
          "status": "draft",
          "published": false
        }
      ],
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:48:25.082Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:52.936Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/22ED0446197F49B490619206DEC71482?fields=availableStates",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "D7969D6CA0D144AEA9CCA88BA6D2CF81",
      "name": "Taxonomy 3",
      "description": "Another description",
      "shortName": "T3",
      "status": "promoted",
      "version": 6,
      "isPublishable": false,
      "isForSiteManagement": false,
      "availableStates": [
        {
          "status": "promoted",
          "version": 6,
          "published": false
        },
        {
          "status": "draft",
          "published": false
        }
      ],
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:49:08.832Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:50:00.951Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/D7969D6CA0D144AEA9CCA88BA6D2CF81?fields=availableStates",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=availableStates",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=availableStates",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=availableStates&offset=0",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=availableStates&offset=0",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}

Example 6:

Returns a list of promoted taxonomies.

/content/management/api/v1.1/taxonomies?q=(status eq \"promoted\")

Response Body

{
  "hasMore": true,
  "offset": 0,
  "count": 1,
  "limit": 1,
  "items": [
    {
      "id": "5D5AF080B7824C49950443A7D51DE950",
      "name": "Taxonomy 1",
      "description": "",
      "shortName": "T1",
      "status": "promoted",
      "version": 4,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-01-31T19:52:45.472Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:43.854Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950?limit=1&q=(status eq \"promoted\")",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&q=(status eq \"promoted\")",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&q=(status eq \"promoted\")",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&offset=1&q=(status eq \"promoted\")",
      "rel": "next",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&offset=0&q=(status eq \"promoted\")",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&offset=2&q=(status eq \"promoted\")",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}

Example 7:

Returns a list of promoted taxonomies with a taxonomy name that contains product.

/content/management/api/v1.1/taxonomies?q=(status eq \"promoted\" AND name co \"product\")

Response Body

{
  "hasMore": true,
  "offset": 0,
  "count": 1,
  "limit": 1,
  "items": [
    {
      "id": "5D5AF080B7824C49950443A7D51DE9F1",
      "name": "Product Colors",
      "description": "",
      "shortName": "COL",
      "status": "promoted",
      "version": 2,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-01-31T19:52:45.472Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:43.854Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950?limit=1&q=(status eq \"promoted\" AND name co \"product\")",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&q=(status eq \"promoted\" AND name co \"product\")",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&q=(status eq \"promoted\" AND name co \"product\")",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&offset=0&q=(status eq \"promoted\" AND name co \"product\")",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&offset=0&q=(status eq \"promoted\" AND name co \"product\")",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}

Example 8:

Search for a promoted taxonomy with a taxonomy short name that is col.

/content/management/api/v1.1/taxonomies?q=(status eq \"promoted\" AND shortName eq \"col\")

Response Body

{
  "hasMore": true,
  "offset": 0,
  "count": 1,
  "limit": 1,
  "items": [
    {
      "id": "5D5AF080B7824C49950443A7D51DE9F1",
      "name": "Product Colors",
      "description": "",
      "shortName": "COL",
      "status": "promoted",
      "version": 2,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-01-31T19:52:45.472Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:43.854Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950?limit=1&q=(status eq \"promoted\" AND shortName eq \"col\")",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&q=(status eq \"promoted\" AND shortName eq \"col\"",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&q=(status eq \"promoted\" AND shortName eq \"col\")",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&offset=0&q=(status eq \"promoted\" AND shortName eq \"col\")",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?limit=1&offset=0&q=(status eq \"promoted\" AND shortName eq \"col\")",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}

Example 9:

List all promoted taxonomies and the optional fields 'availableStates' and 'publishedChannels'.

/content/management/api/v1.1/taxonomies?fields=availableStates,publishedChannels

Response Body

{
  "hasMore": false,
  "offset": 0,
  "count": 3,
  "limit": 100,
  "items": [
    {
      "id": "5D5AF080B7824C49950443A7D51DE950",
      "name": "Taxonomy 1",
      "description": "",
      "shortName": "T1",
      "status": "promoted",
      "version": 4,
      "isPublishable": true,
      "isForSiteManagement": false,
      "availableStates": [
        {
          "status": "promoted",
          "version": 4,
          "published": true
        },
        {
          "status": "draft",
          "published": false
        }
      ],
      "publishedChannels": [
        {
          "id": "CC59073EACA4A56A990700ADEB643CAB64E62AA2CC55",
          "name": "Channel 02"
        },
        {
          "id": "CCD608830CFD886E62FC58DC2B89320BEA5A4052D0FC",
          "name": "Channel 01"
        }
      ],
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-01-31T19:52:45.472Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:43.854Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950?fields=availableStates,publishedChannels",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "22ED0446197F49B490619206DEC71482",
      "name": "Taxonomy 2",
      "description": "Some description",
      "shortName": "T2",
      "status": "promoted",
      "version": 5,
      "isPublishable": false,
      "isForSiteManagement": false,
      "availableStates": [
        {
          "status": "promoted",
          "version": 5,
          "published": false
        },
        {
          "status": "draft",
          "published": false
        }
      ],
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:48:25.082Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:52.936Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/22ED0446197F49B490619206DEC71482?fields=availableStates,publishedChannels",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "D7969D6CA0D144AEA9CCA88BA6D2CF81",
      "name": "Taxonomy 3",
      "description": "Another description",
      "shortName": "T3",
      "status": "promoted",
      "version": 6,
      "isPublishable": true,
      "isForSiteManagement": false,
      "availableStates": [
        {
          "status": "promoted",
          "version": 6,
          "published": true
        },
        {
          "status": "draft",
          "published": false
        }
      ],
      "publishedChannels": [
        {
          "id": "CC59073EACA4A56A990700ADEB643CAB64E62AA2CC55",
          "name": "Channel 02"
        }
      ],
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:49:08.832Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:50:00.951Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/D7969D6CA0D144AEA9CCA88BA6D2CF81?fields=availableStates,publishedChannels",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=availableStates,publishedChannels",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=availableStates,publishedChannels",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=availableStates,publishedChannels&offset=0",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=availableStates,publishedChannels&offset=0",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}

Example 10:

List all promoted taxonomies including a link to the sub-resource categoryProperties for each taxonomy.

/content/management/api/v1.1/taxonomies?fields=categoryProperties

Response Body

{
  "hasMore": false,
  "offset": 0,
  "count": 3,
  "limit": 100,
  "items": [
    {
      "id": "5D5AF080B7824C49950443A7D51DE950",
      "name": "Taxonomy 1",
      "description": "",
      "shortName": "T1",
      "status": "promoted",
      "version": 4,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-01-31T19:52:45.472Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:43.854Z",
        "timezone": "UTC"
      },
      "categoryProperties": {
        "links": [
          {
            "href": "https://<hostname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950/categoryProperties",
            "rel": "self",
            "method": "GET",
            "mediaType": "application/json"
          }
        ]
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950?fields=categoryProperties",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "22ED0446197F49B490619206DEC71482",
      "name": "Taxonomy 2",
      "description": "Some description",
      "shortName": "T2",
      "status": "promoted",
      "version": 5,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:48:25.082Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:52.936Z",
        "timezone": "UTC"
      },
      "categoryProperties": {
        "links": [
          {
            "href": "https://<hostname>/content/management/api/v1.1/taxonomies/22ED0446197F49B490619206DEC71482/categoryProperties",
            "rel": "self",
            "method": "GET",
            "mediaType": "application/json"
          }
        ]
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/22ED0446197F49B490619206DEC71482?fields=categoryProperties",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "D7969D6CA0D144AEA9CCA88BA6D2CF81",
      "name": "Taxonomy 3",
      "description": "Another description",
      "shortName": "T3",
      "status": "promoted",
      "version": 6,
      "isPublishable": false,
      "isForSiteManagement": false,
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:49:08.832Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:50:00.951Z",
        "timezone": "UTC"
      },
      "categoryProperties": {
        "links": [
          {
            "href": "https://<hostname>/content/management/api/v1.1/taxonomies/D7969D6CA0D144AEA9CCA88BA6D2CF81/categoryProperties",
            "rel": "self",
            "method": "GET",
            "mediaType": "application/json"
          }
        ]
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/D7969D6CA0D144AEA9CCA88BA6D2CF81?fields=categoryProperties",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=categoryProperties",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=categoryProperties",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=categoryProperties&offset=0",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=categoryProperties&offset=0",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}

Example 11:

List all promoted taxonomies including all the optional fields and a link to the sub-resource categoryProperties.

/content/management/api/v1.1/taxonomies?fields=all

Response Body

{
  "hasMore": false,
  "offset": 0,
  "count": 3,
  "limit": 100,
  "items": [
    {
      "id": "5D5AF080B7824C49950443A7D51DE950",
      "name": "Taxonomy 1",
      "description": "",
      "shortName": "T1",
      "status": "promoted",
      "version": 4,
      "isPublishable": true,
      "isForSiteManagement": false,
      "roleName": "manager",
      "availableStates": [
        {
          "status": "promoted",
          "version": 4,
          "published": true
        },
        {
          "status": "draft",
          "published": false
        }
      ],
      "publishedChannels": [
        {
          "id": "CC59073EACA4A56A990700ADEB643CAB64E62AA2CC55",
          "name": "Channel 02"
        },
        {
          "id": "CCD608830CFD886E62FC58DC2B89320BEA5A4052D0FC",
          "name": "Channel 01"
        }
      ],
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-01-31T19:52:45.472Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:43.854Z",
        "timezone": "UTC"
      },
      "categoryProperties": {
        "links": [
          {
            "href": "https://<hostname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950/categoryProperties",
            "rel": "self",
            "method": "GET",
            "mediaType": "application/json"
          }
        ]
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950?fields=all",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "22ED0446197F49B490619206DEC71482",
      "name": "Taxonomy 2",
      "description": "Some description",
      "shortName": "T2",
      "status": "promoted",
      "version": 5,
      "isPublishable": false,
      "isForSiteManagement": false,
      "availableStates": [
        {
          "status": "promoted",
          "version": 5,
          "published": false
        },
        {
          "status": "draft",
          "published": false
        }
      ],
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:48:25.082Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:52.936Z",
        "timezone": "UTC"
      },
      "categoryProperties": {
        "links": [
          {
            "href": "https://<hostname>/content/management/api/v1.1/taxonomies/22ED0446197F49B490619206DEC71482/categoryProperties",
            "rel": "self",
            "method": "GET",
            "mediaType": "application/json"
          }
        ]
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/22ED0446197F49B490619206DEC71482?fields=all",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "D7969D6CA0D144AEA9CCA88BA6D2CF81",
      "name": "Taxonomy 3",
      "description": "Another description",
      "shortName": "T3",
      "status": "promoted",
      "version": 6,
      "isPublishable": true,
      "isForSiteManagement": false,
      "availableStates": [
        {
          "status": "promoted",
          "version": 6,
          "published": true
        },
        {
          "status": "draft",
          "published": false
        }
      ],
      "publishedChannels": [
        {
          "id": "CC59073EACA4A56A990700ADEB643CAB64E62AA2CC55",
          "name": "Channel 02"
        }
      ],
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:49:08.832Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:50:00.951Z",
        "timezone": "UTC"
      },
      "categoryProperties": {
        "links": [
          {
            "href": "https://<hostname>/content/management/api/v1.1/taxonomies/D7969D6CA0D144AEA9CCA88BA6D2CF81/categoryProperties",
            "rel": "self",
            "method": "GET",
            "mediaType": "application/json"
          }
        ]
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/D7969D6CA0D144AEA9CCA88BA6D2CF81?fields=all",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=all",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=all",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=all&offset=0",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?fields=all&offset=0",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}

Example 12:

Returns a list of promoted taxonomies with permissions equal or higher than \"viewer\".

/content/management/api/v1.1/taxonomies?q=(roleName eq \"viewer\")&fields=all"

Response Body

{
  "hasMore": false,
  "offset": 0,
  "count": 3,
  "limit": 100,
  "items": [
    {
      "id": "5D5AF080B7824C49950443A7D51DE950",
      "name": "Taxonomy Manager 1",
      "description": "",
      "shortName": "T1",
      "status": "promoted",
      "version": 4,
      "isPublishable": false,
      "isForSiteManagement": false,
      "roleName": "manager",
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-01-31T19:52:45.472Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:43.854Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/5D5AF080B7824C49950443A7D51DE950",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "22ED0446197F49B490619206DEC71482",
      "name": "Taxonomy Editor 2",
      "description": "Some description",
      "shortName": "T2",
      "status": "promoted",
      "version": 5,
      "isPublishable": false,
      "isForSiteManagement": false,
      "roleName": "editor",
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:48:25.082Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:49:52.936Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/22ED0446197F49B490619206DEC71482",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    },
    {
      "id": "D7969D6CA0D144AEA9CCA88BA6D2CF81",
      "name": "Taxonomy Viewer 3",
      "description": "Another description",
      "shortName": "T3",
      "status": "promoted",
      "version": 6,
      "isPublishable": false,
      "isForSiteManagement": false,
      "roleName": "viewer",
      "createdBy": "cecusername",
      "createdDate": {
        "value": "2019-02-01T17:49:08.832Z",
        "timezone": "UTC"
      },
      "updatedBy": "cecusername",
      "updatedDate": {
        "value": "2019-02-01T17:50:00.951Z",
        "timezone": "UTC"
      },
      "links": [
        {
          "href": "https://<hostname>/content/management/api/v1.1/taxonomies/D7969D6CA0D144AEA9CCA88BA6D2CF81",
          "rel": "self",
          "method": "GET",
          "mediaType": "application/json"
        }
      ]
    }
  ],
  "links": [
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/metadata-catalog/taxonomies",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?offset=0",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://<hostname>/content/management/api/v1.1/taxonomies?offset=0",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
  ]
}
Back to Top