AgentBots
Inbox API
Conversations API
Contact Labels
CSAT Survey Page
Account AgentBots
Agents
Canned Responses
Canned Response
Custom Attributes
Contacts
Automation Rule
Help Center
Conversations
Conversation Assignment
Conversation Labels
Inboxes
Integrations
Profile
Teams
Custom Filters
Conversation Labels
Add Labels
Conversation Labels
Add Labels
Add labels to a conversation. Note that this API would overwrite the existing list of labels associated to the conversation.
POST
/
api
/
v1
/
accounts
/
{account_id}
/
conversations
/
{conversation_id}
/
labels
curl --request POST \
--url https://app.chatwoot.com/api/v1/accounts/{account_id}/conversations/{conversation_id}/labels \
--header 'Content-Type: application/json' \
--data '{
"labels": [
"support",
"billing"
]
}'
{
"payload": [
"<string>"
]
}
Path Parameters
The numeric ID of the account
The numeric ID of the conversation
Body
application/json
Response
200
application/json
Success
The response is of type object
.
curl --request POST \
--url https://app.chatwoot.com/api/v1/accounts/{account_id}/conversations/{conversation_id}/labels \
--header 'Content-Type: application/json' \
--data '{
"labels": [
"support",
"billing"
]
}'
{
"payload": [
"<string>"
]
}