Get Tag by ID
Returns a single tag by ID.
Request
GET /v2/tags/123456793 HTTP/1.1
Authorization: Bearer oauth_token
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json
{
"id" : 123456793,
"slug" : "dark-side",
"name" : "Dark Side",
"color" : "green",
"_links" : {
"self" : {
"href" : "..."
}
}
}
Response fields
Path | Type | Description |
---|---|---|
id |
Number |
Unique tag identifier |
name |
String |
Tag name as seen in the web application |
slug |
String |
Slugified version of the tag value |
color |
String |
Tag color |