List taxonomy category properties

get

/content/management/api/v1.1/taxonomies/{id}/categoryProperties

List category properties definition of the taxonomy. You can control the number of properties to be fetched, paginated, and sorted. Category properties can be applied to categories in the taxonomy. All taxonomies have three system managed properties created automatically:
  • Keywords: allow user to add a list of keywords or phrases to describe assets in the category
  • Synonyms: allow user to add a list of synonyms, acronyms or aliases for the category name
  • Related to: allow user to create a list of categories in the same or other taxonomies that are related to the category
  • Request

    Path Parameters
    Query Parameters
    • This parameter accepts a non negative integer and is used to control the size of the result.
      Default Value: 20
    • This parameter accepts a non negative integer and is used to control the start index of the result.
      Default Value: 0
    • This parameter is used to control order of results. The value of this query parameter follows the format of fieldName:[asc/desc]. asc stands for ascending order and desc stands for descending order.

      Allowed fields are apiName and displayName. The default sort order is asc.
      Default Value: displayName:asc
    • 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 : CategoryPropertiesDefinition
    Type: object
    CategoryPropertiesDefinition
    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 : CategoryPropertyDefinition
    Type: object
    Category Property Definition
    Show Source
    Nested Schema : date
    Type: object
    date
    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.

    404 Response

    Taxonomy not found. The requested resource not found.

    500 Response

    Internal server error.
    Back to Top