Skip to main content

List team tags

GET 

/v2/tags

Fetches a list of the tags used for a team. The records can be filtered, paged, and sorted according to the respective parameters.

Tags can be applied to mulitple resource types.

Request

Query Parameters

    search string

    Filters tags by name

    Example: holiday
    ids integer[]

    Filters tags by their IDs

    Example: [1, 5, 9]
    sort_by string

    Key to sort on, must be one of: name. Defaults to name

    sort_direction string

    Direction to sort in, must be one of: ASC, DESC. Defaults to DESC

    per_page integer

    How many records to show per page in the range [1, 100]. Defaults to 25

    page integer

    The current page to fetch results from. Defaults to 1

    include_paging_counts boolean

    Whether to include total_pages and total_count in the metadata. Defaults to false

    limit_paging_counts boolean

    Specifies whether the max limit of 10k records should be applied to pagination counts. Affects the total_count and total_pages data

Responses

Success

Schema
    id integer

    ID of Tag

    name string

    Name of the tag

Loading...