Skip to main content
https://.thoughtindustries.com

Tags

List tags

List tags

GEThttps://example.thoughtindustries.com/incoming/v2/tags

Returns a paginated list of tags, optionally filtered by the provided criteria.

Example request

curl "https://example.thoughtindustries.com/incoming/v2/tags" \
  -H 'Authorization: Bearer YOUR_API_KEY'

Parameters

NameTypeRequiredLocationDescription
filtersTagsFiltersInputNoqueryFilters to narrow the returned tags, such as by label or folder status.

Example response

{
  "data": {
    "Tags": {
      "pageInfo": {
        "perPage": 0,
        "currentPage": 0,
        "total": 0,
        "hasMore": true
      },
      "tags": [
        {
          "id": "00000000-0000-0000-0000-000000000000",
          "label": "string",
          "isFolder": true,
          "updatedAt": "2024-01-01T00:00:00.000Z",
          "description": "string"
        }
      ]
    }
  }
}

Response fields

FieldTypeDescription
pageInfoPageInfoPagination metadata for the result set.
pageInfo.perPageintegerNumber of tags returned per page.
pageInfo.currentPageintegerIndex of the current page in the result set.
pageInfo.totalintegerTotal number of tags matching the request.
pageInfo.hasMorebooleanIndicates whether additional pages of results are available.
tagsTag[]Array of tag objects matching the request.
tags.iduuidUnique identifier for the tag.
tags.labelstringDisplay name of the tag.
tags.isFolderbooleanIndicates whether the tag acts as a folder grouping other tags.
tags.updatedAtISO 8601 timestampDate and time the tag was last modified, in ISO 8601 format.
tags.descriptionstringOptional text describing the purpose or contents of the tag.