Tags
Retrieves multiple tags.
[]A UUID v4 string that identifies an entity.
A UUID v4 string that identifies an entity.
The page number.
1The page size.
10Search term to filter tags by name or description.
The API key to use for authentication. Can be created in the api keys section on the workspace settings page.
Retrieves all tags for the workspace.
A UUID v4 string that identifies an entity.
The number of distinct pending or ongoing tickets linked to this tag via ticket_tags or chat_tags.
The color of the tag.
The description of the tag.
The display name of the tag.
The workspace that owns this tag.
Unauthorized.
GET /api/v1/tags HTTP/1.1
Host: api.endless.zaia.app
authorization: text
Accept: */*
[
{
"createdAt": "2026-01-01T00:00:00.000Z",
"id": "123e4567-e89b-12d3-a456-426614174000",
"updatedAt": "2026-01-01T00:00:00.000Z",
"activeTicketCount": 1,
"color": "default",
"description": "text",
"name": "text",
"workspaceId": "123e4567-e89b-12d3-a456-426614174000"
}
]Creates a new tag.
The API key to use for authentication. Can be created in the api keys section on the workspace settings page.
The color of the tag.
The description of the tag.
The display name of the tag.
The tag was created.
A UUID v4 string that identifies an entity.
The number of distinct pending or ongoing tickets linked to this tag via ticket_tags or chat_tags.
The color of the tag.
The description of the tag.
The display name of the tag.
The workspace that owns this tag.
Unauthorized.
POST /api/v1/tags HTTP/1.1
Host: api.endless.zaia.app
authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 54
{
"color": "default",
"description": "text",
"name": "text"
}{
"createdAt": "2026-01-01T00:00:00.000Z",
"id": "123e4567-e89b-12d3-a456-426614174000",
"updatedAt": "2026-01-01T00:00:00.000Z",
"activeTicketCount": 1,
"color": "default",
"description": "text",
"name": "text",
"workspaceId": "123e4567-e89b-12d3-a456-426614174000"
}Retrieves a tag.
A UUID v4 string that identifies an entity.
The API key to use for authentication. Can be created in the api keys section on the workspace settings page.
Retrieves a tag.
A UUID v4 string that identifies an entity.
The number of distinct pending or ongoing tickets linked to this tag via ticket_tags or chat_tags.
The color of the tag.
The description of the tag.
The display name of the tag.
The workspace that owns this tag.
Unauthorized.
Tag not found.
GET /api/v1/tags/{id} HTTP/1.1
Host: api.endless.zaia.app
authorization: text
Accept: */*
{
"createdAt": "2026-01-01T00:00:00.000Z",
"id": "123e4567-e89b-12d3-a456-426614174000",
"updatedAt": "2026-01-01T00:00:00.000Z",
"activeTicketCount": 1,
"color": "default",
"description": "text",
"name": "text",
"workspaceId": "123e4567-e89b-12d3-a456-426614174000"
}Removes a tag.
A UUID v4 string that identifies an entity.
The API key to use for authentication. Can be created in the api keys section on the workspace settings page.
The tag was removed.
An informative message for a call that has no effective result to be returned.
Unauthorized.
Tag not found.
DELETE /api/v1/tags/{id} HTTP/1.1
Host: api.endless.zaia.app
authorization: text
Accept: */*
{
"message": "text"
}Updates a tag.
A UUID v4 string that identifies an entity.
The API key to use for authentication. Can be created in the api keys section on the workspace settings page.
The number of distinct pending or ongoing tickets linked to this tag via ticket_tags or chat_tags.
The color of the tag.
The description of the tag.
The display name of the tag.
The tag was updated.
A UUID v4 string that identifies an entity.
The number of distinct pending or ongoing tickets linked to this tag via ticket_tags or chat_tags.
The color of the tag.
The description of the tag.
The display name of the tag.
The workspace that owns this tag.
Invalid data provided.
Unauthorized.
Tag not found.
PATCH /api/v1/tags/{id} HTTP/1.1
Host: api.endless.zaia.app
authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 76
{
"activeTicketCount": 1,
"color": "default",
"description": "text",
"name": "text"
}{
"createdAt": "2026-01-01T00:00:00.000Z",
"id": "123e4567-e89b-12d3-a456-426614174000",
"updatedAt": "2026-01-01T00:00:00.000Z",
"activeTicketCount": 1,
"color": "default",
"description": "text",
"name": "text",
"workspaceId": "123e4567-e89b-12d3-a456-426614174000"
}Last updated