InboxUpdate conversation

Update conversation

Update a conversation's read status, AI tag, custom tags, or AI reply-agent mode. Set markRead: true or isRead: true to mark all unread replies as read. Set isRead: false to mark lead replies as unread. Set aiTag to a string to apply a tag, or null to remove it. Set aiMode to off, followups_only, or active to control the campaign AI agent for this conversation. Only modes supported by the campaign's assigned agent are accepted.

curl -X PATCH "https://api.sendkit.ai/v1/inbox/example_string" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d '{
  "markRead": true
}'
{
  "success": true,
  "data": {
    "id": "664a1b2c3d4e5f6a7b8c9d0e",
    "aiTag": "interested",
    "tags": [
      "vip"
    ],
    "aiMode": "active"
  }
}
PATCH
/v1/inbox/{conversationId}
PATCH
Base URLstring

Target server for requests. Edit to use your own host.

API Key (header: X-Api-Key)
X-Api-Keystring
Required

Platform API key (sk_user_...) or Workspace API key (sk_...)

Platform API key (sk_user_...) or Workspace API key (sk_...)
path
conversationIdstring
Required

Conversation ID (the inbox thread ID)

Content-Typestring
Required

The media type of the request body

Options: application/json
markReadboolean

Set to true to mark all unread replies as read

isReadboolean

Set to true to mark as read, false to mark as unread

aiTagstring

AI tag to apply (or null to remove)

tagsarray

Custom tags to set on the conversation

aiModestring

Per-conversation AI reply-agent mode. off disables the agent, followups_only allows AI follow-ups only, and active allows AI auto-replies plus any supported follow-ups. The campaign must have an AI agent enabled, and the selected mode must match that agent's capabilities.

Options: off, followups_only, active
Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-Api-Keystring
Required

API Key for authentication. Platform API key (sk_user_...) or Workspace API key (sk_...)

Path Parameters

conversationIdstring
Required

Conversation ID (the inbox thread ID)

Body

application/json
markReadboolean

Set to true to mark all unread replies as read

isReadboolean

Set to true to mark as read, false to mark as unread

aiTagstring

AI tag to apply (or null to remove)

tagsarray

Custom tags to set on the conversation

aiModestring

Per-conversation AI reply-agent mode. off disables the agent, followups_only allows AI follow-ups only, and active allows AI auto-replies plus any supported follow-ups. The campaign must have an AI agent enabled, and the selected mode must match that agent's capabilities.

Allowed values:offfollowups_onlyactive

Responses

successboolean
dataobject