GET
/
api
/
v1
/
tags
/
{tagId}
curl --location --request GET 'https://api.rapidagent.ai/api/v1/tags/{tagId}' \
--header 'Content-Type: application/json' \
--header 'Autorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "clhjmx2ka00016ilng9y0ha3f",
    "userId": "clhj28u1300006ig02ptpm1sh",
    "name": "My tag",
    "color": "#FFF",  
  }
}

Params

tagId
string
required

A valid tag ID.

Response

success
boolean

Indicates whether the call was successful.

data
object

A single tag object.

curl --location --request GET 'https://api.rapidagent.ai/api/v1/tags/{tagId}' \
--header 'Content-Type: application/json' \
--header 'Autorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "clhjmx2ka00016ilng9y0ha3f",
    "userId": "clhj28u1300006ig02ptpm1sh",
    "name": "My tag",
    "color": "#FFF",  
  }
}