Skip to main content

Get All User Tags

Retrieve the list of user tags.

GET/v1/user/tags

Properties

NameTypeDescription
idnumberUnique identifier of the tag
titlestringTitle of the tag
colorstringHex color code of the tag
descriptionstringDescription of the tag
user_idstringID of the user who created the tag
created_atstringTimestamp when the tag was created
updated_atstringTimestamp when the tag was last updated

Example

{
"code": 200,
"meta": {
"version": "v1.0.0",
"is_authenticated": true
},
"response": [
{
"id": 11,
"title": "Frontend",
"color": "#353232",
"description": "Items from the company frontends",
"user_id": "HhWKhVIPM7er5KttMNC68hl5o8t1",
"created_at": "2025-02-24T21:06:25.592346Z",
"updated_at": "2025-02-24T21:22:20.199995Z"
},
{
"id": 12,
"title": "Backend",
"color": "#153237",
"description": "Items from the company backends",
"user_id": "HhWKhVIPM7er5KttMNC68hl5o8t1",
"created_at": "2025-02-23T21:06:25.592346Z",
"updated_at": "2025-02-23T21:22:20.199995Z"
}
]
}

CURL Example

curl -X GET "https://api-integrations.snackprompt.com/v1/user/tags" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY"