Skip to main content

List Tags

GET 

/tags

This API returns a list of tags.

A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.

Request

Query Parameters

    limit int32

    Possible values: <= 250

    Default value: 250

    Max number of results to return. See V3 API Standard Collection Parameters for more information.

    Example: 250
    offset int32

    Default value: 0

    Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.

    Example: 0
    count boolean

    If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored.

    Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used.

    See V3 API Standard Collection Parameters for more information.

    Example: true
    filters string

    Filter results using the standard syntax described in V3 API Standard Collection Parameters

    Filtering is supported for the following fields and operators:

    id: eq, in

    name: eq, in, sw

    Example: id eq "27462f54-61c7-4140-b5da-d5dbe27fc6db"
    sorters comma-separated

    Sort results using the standard syntax described in V3 API Standard Collection Parameters

    Sorting is supported for the following fields: id, name, created, modified

    Example: name,-modified

Responses

List of all tags.

Schema

  • Array [

  • id stringrequired

    Tag id

    name stringrequired

    Name of the tag.

    created date-timerequired

    Date the tag was created.

    modified date-timerequired

    Date the tag was last modified.

    tagCategoryRefs

    object[]

    required

  • Array [

  • type string

    Possible values: [ACCESS_PROFILE, APPLICATION, CAMPAIGN, ENTITLEMENT, IDENTITY, ROLE, SOD_POLICY, SOURCE]

    DTO type of the tagged object's category.

    id string

    Tagged object's ID.

    name string

    Tagged object's display name.

  • ]

  • ]

Loading...