cURL
curl --request GET \ --url https://inboxapp.com/api/v1/tags/{tagId} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "name": "<string>", "color": "#3b82f6" }
Get details of a specific tag
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the tag to retrieve.
OK
Unique identifier for the tag.
"l44e15irdq4db30i77cgphhx"
The display name of the tag.
"High Priority"
"Follow Up"
"VIP"
Hex color code for the tag (e.g., #3b82f6 for blue). Null if no color is set.
"#3b82f6"
Was this page helpful?