Skip to content

Update Conversation Part Request

Payload for updating a conversation part. Supports two operations:

  1. Updating the send state of an external reply (requires send_state and info_message).
  2. Marking a part as seen by an admin (requires seen and admin_id). Both operations require experimental and secret for HMAC authentication.
send_statestring

The send state to set on the external reply.

Example:"sent"
info_messagestring

An informational message about the send state update.

Example:"Message delivered successfully"
seenboolean

Set to true to mark the conversation part as seen.

Example:true
admin_idstring

The id of the admin marking the part as seen.

Example:"991267694"
experimentalbooleanrequired

Must be true to use this experimental endpoint.

Example:true
secretstringrequired

HMAC secret for authenticating the experimental request.

Example:"hmac_secret_value"
{ "send_state": "sent", "info_message": "Message delivered successfully", "seen": true, "admin_id": "991267694", "experimental": true, "secret": "hmac_secret_value" }