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

{
  "pageInfo": {
    "perPage": 0,
    "currentPage": 0,
    "total": 0,
    "hasMore": true
  },
  "tags": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "label": "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.