Get Tag by ID
- Param
- Response
Properties
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ✅ | ID of the tag |
Example
/v1/tags/0fIwVvdva
Properties
| Name | Type | Description |
|---|---|---|
| id | number | Unique identifier of the tag |
| title | string | Title of the tag |
| color | string | Hex color code of the tag |
| description | string | Description of the tag |
| user_id | string | ID of the user who created the tag |
| created_at | string | Timestamp when the tag was created |
| updated_at | string | Timestamp when the tag was last updated |
Example
{
"code": 200,
"meta": {
"version": "v1.0.0",
"is_authenticaded": true
},
"response": [
{
"id": "0fIwVvdva",
"title": "Frontend",
"color": "#353232",
"description": "Itens from the company frontends",
"user_id": "HhWKhVIPM7er5KttMNC68hl5o8t1",
"created_at": "2025-02-24T21:06:25.592346Z",
"updated_at": "2025-02-24T21:22:20.199995Z"
}
]
}
CURL Example
curl -X GET "https://api-integrations.snackprompt.com/v1/tags/{id}" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY"