Add Tag to Conversation - Early Access
Resource
https://api.infobip.com/ccaas/1/conversations/{conversationId}/tags
Path Params
With Add tag to conversation you can categorize conversations for assignment or reporting purposes.
Property name | Type | Description |
---|---|---|
*conversationId | string | Required - conversation id the tag is added to |
Body Params
Property name | Type | Description |
---|---|---|
*tagName | string | Required - tag name to be added to the conversation |
Request Example
POST /ccaas/1/conversations/CCAFAE1506956DAE0C26928065CF59AB/tags HTTP/1.1
Host: api.infobip.com
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
Accept: application/json
{
"tagName": "TAG1"
}
Response
{
"statusCode": "SUCCESS",
"message": "Tag added to conversation successfully."
}
{
"statusCode": "ERROR",
"message": "Invalid tagName 'INVALID_TAG_NAME' given! No such entity exists."
}
{
"statusCode": "ERROR",
"message": "Required request body is missing or not valid"
}