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

Response

success
boolean

Indicates whether the call was successful.

data
object

List of tag objects.

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