Get tags from item
GET/v2/boards/:board_id/items/:item_id/tags
Retrieves all the tags from the specified item.
Required scope
boards:readRate limiting
Level 1Request
Path Parameters
Unique identifier (ID) of the board with the item whose tags you want to retrieve.
Unique identifier (ID) of the item whose tags you want to retrieve.
Responses
- 200
- 400
- 404
- 429
Get tags from an item
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
tags
object[]
Possible values: [red
, light_green
, cyan
, yellow
, magenta
, green
, blue
, gray
, violet
, dark_green
, dark_blue
, black
]
Background color of the tag.
Unique identifier of the tag.
Text of the tag.
Type of the object that is returned. In this case, type returns tag
.
{
"tags": [
{
"fillColor": "red",
"id": "3074457363306854000",
"title": "delayed",
"type": "string"
}
]
}
Malformed request
- application/json
- Schema
- Example (from schema)
Schema
Code of the error
Description of the error
Status code of the error
Type of the error
{
"code": "error",
"message": "Error message",
"status": 400,
"type": "error"
}
Not found
- application/json
- Schema
- Example (from schema)
Schema
Code of the error
Description of the error
Status code of the error
Type of the error
{
"code": "error",
"message": "Error message",
"status": 400,
"type": "error"
}
Too many requests
- application/json
- Schema
- Example (from schema)
Schema
Code of the error
Description of the error
Status code of the error
Type of the error
{
"code": "error",
"message": "Error message",
"status": 400,
"type": "error"
}