InboxSend or schedule reply

Send or schedule reply

Sends a reply immediately or schedules it for later. Omit scheduledFor for immediate send; pass an ISO 8601 date in the future to schedule. Use the attachments array with objects from the attachment upload endpoint. Replies are sent from the conversation's assigned mailbox or original sending mailbox. body accepts plain text or HTML. Plain-text newlines and blank lines are preserved automatically using the same email-safe formatting as the SendKit inbox composer. Rich HTML is preserved and a matching text fallback is generated for text-only clients, including headings, lists, links, quotes, code, dividers, images, and video links. Set bodyFormat to plain_text when sending literal HTML-tag examples, or to html to interpret the body explicitly as rich HTML. auto remains the default for backwards compatibility.

curl -X POST "https://api.sendkit.ai/v1/inbox/example_string/reply" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d '{
  "body": "Thanks for your interest! Let's schedule a call this week."
}'
{
  "success": true,
  "data": {
    "id": "664a1b2c3d4e5f6a7b8c9d10",
    "status": "pending",
    "scheduledFor": "2024-06-01T15:00:00.000Z",
    "isScheduled": false
  }
}
POST
/v1/inbox/{conversationId}/reply
POST
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
bodystring
Required

Reply body content (required). May be plain text or rich HTML; plain-text newlines and blank lines are preserved automatically.

Min length: 1
bodyFormatstring

Explicit body interpretation. Use plain_text for literal tag examples and html for rich HTML.

Options: auto, plain_text, html
ccarray

CC recipients

bccarray

BCC recipients

scheduledForstring

Schedule reply for this time (ISO 8601). Must be in the future. Omit for immediate send.

Format: date-time
attachmentsarray

Attachments from the upload endpoint

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
bodystring
Required

Reply body content (required). May be plain text or rich HTML; plain-text newlines and blank lines are preserved automatically.

bodyFormatstring

Explicit body interpretation. Use plain_text for literal tag examples and html for rich HTML.

Allowed values:autoplain_texthtml
ccarray

CC recipients

bccarray

BCC recipients

scheduledForstring

Schedule reply for this time (ISO 8601). Must be in the future. Omit for immediate send.

attachmentsarray

Attachments from the upload endpoint

Responses