Comment on page
Tags
You can use the API to get or set tags.
The Tag model
Key | Type | Description |
---|---|---|
id | String | The unique identifier for the tag which is given by Tiledesk. |
tag | String | The tag name. |
color | String | The tag hexadecimal color |
attributes | Object | The custom attributes which are set for the tag. |
createdAt | String | The time (ISO-8601 date string) when the tag was created. |
updatedAt | String | The time (ISO-8601 date string) when the tag was updated. |
createdBy | String | The unique identifier of the row creator |
id_project | String | The unique identifier of the project |
get
https://api.tiledesk.com/v3
/:project_id/tags
Get all tags
get
https://api.tiledesk.com/v3
/:project_id/tags/:id
Get a tag by id
post
https://api.tiledesk.com/v3
/:project_id/tags
Create a new tag
put
https://api.tiledesk.com/v3
/:project_id/tags/:id
Update a tag by id
delete
https://api.tiledesk.com/v3
/:project_id/tags/:id
Delete a tag by id
Last modified 13d ago