Tags
List tags
Returns every tag belonging to the active project. The response is paginated. Every new project is seeded with branded, non-branded, and review tags.
GET
/api/v1/tags
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
| page | integer | Optional | The page number to return. Defaults to |
| per_page | integer | Optional | The number of items per page. Defaults to |
| sort_by | string | Optional | The column to sort by. Defaults to |
| sort_order | string | Optional | The direction to sort by. Each endpoint has its own default. |
| include | string | Optional | A comma-separated list of related resources to include in the response. Allowed values: |
Response
Response schema
| Field | Type | Description |
|---|---|---|
| data | Tag[] | |
| links | PaginationLinks | |
| meta | PaginationMeta |
The tag object
| Field | Type | Description |
|---|---|---|
| id | integer | The unique ID of the tag. |
| project_id | integer | The ID of the project this tag belongs to. |
| name | string | The display label of the tag. |
| color | string | The tag's color. One of |
| created_at | datetime | When the tag was created. |
| updated_at | datetime | When the tag was last updated. |