get https://app.asana.com/api/1.0/tags/
Returns the complete tag record for a single tag.
Responses
Returns the complete tag record for a single tag.
xxxxxxxxxx
curl --request GET \
--url https://app.asana.com/api/1.0/tags/tag_gid \
--header 'accept: application/json'
xxxxxxxxxx
23{
"data": {
"gid": "12345",
"resource_type": "tag",
"name": "Stuff to buy",
"color": "light-green",
"notes": "Mittens really likes the stuff from Humboldt.",
"created_at": "2012-02-22T02:06:58.147Z",
"followers": [
{
"gid": "12345",
"resource_type": "user",
"name": "Greg Sanchez"
}
],
"workspace": {
"gid": "12345",
"resource_type": "workspace",
"name": "My Company Workspace"
},
"permalink_url": "https://app.asana.com/0/resource/123456789/list"
}
}