Appearance
List Tags
GET
/v2/organizations/{organizationId}/tagsReturns tags for a given organization, filtered by the provided tag IDs.
100 req/sParameters
Path Parameters
organizationIdintegerrequiredpathThe unique identifier of the organization (int64).
Query Parameters
idsstringrequiredqueryComma-separated list of tag IDs to filter (int64 values).
Try it
Parameters
Organization ID
Comma-separated tag IDs to filter
Response
json
{
"tags": [
{ "id": 1, "name": "Important" },
{ "id": 2, "name": "Reviewed" },
{ "id": 3, "name": "Follow-up" }
]
}Response Fields
| Field | Type | Description |
|---|---|---|
tags | array | List of tag objects matching the requested IDs |
tags[].id | integer (int64) | Unique identifier for the tag |
tags[].name | string | Display name of the tag |