POST
/
public
/
api
/
v1
/
inboxes
/
{inbox_identifier}
/
contacts
/
{contact_identifier}
/
conversations
/
{conversation_id}
/
toggle_status
curl --request POST \
  --url https://app.chatwoot.com/public/api/v1/inboxes/{inbox_identifier}/contacts/{contact_identifier}/conversations/{conversation_id}/toggle_status
{
  "id": 123,
  "inbox_id": "<string>",
  "messages": [
    {
      "content": "<string>",
      "content_type": "text",
      "content_attributes": {},
      "message_type": "incoming",
      "created_at": 123,
      "private": true,
      "attachment": {},
      "sender": {},
      "conversation_id": 123
    }
  ],
  "contact": {}
}

Path Parameters

inbox_identifier
string
required

The identifier obtained from API inbox channel

contact_identifier
string
required

The source id of contact obtained on contact create

conversation_id
integer
required

The numeric ID of the conversation

Response

200
application/json
Conversation resolved successfully

The response is of type object.