Add Tag
- Param
- Response
Properties
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | ✅ | ID of the list to receive the tag |
| tag_id | string | ✅ | ID of the tag to be associated |
Example
/v1/user/list/:id/tag/tag_id
Properties
| Name | Type | Description |
|---|---|---|
| code | number | HTTP status code of the response |
| meta | object | Metadata about the response |
| response | string | Result of the operation. Usually 'success' |
Example
{
"code": 200,
"meta": {
"version": "v1.0.0",
"is_authenticaded": true
},
"response": "success"
}
CURL Example
curl -X POST "https://api-integrations.snackprompt.com/v1/user/list/:id/tag/tag_id" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY"