Update Thread Schedule

Schedules a reply/forward thread. Subsequent requests override the previous schedules.

Request

PUT /v2/conversations/99/threads/500/schedule HTTP/1.1
Authorization: Bearer oauth_token
Content-Type: application/json

{
  "scheduledFor" : "2025-02-15T12:57:43Z",
  "unscheduleOnCustomerReply" : true,
  "sendAsCreator" : false
}

Path Parameters

/v2/conversations/{conversationId}/threads/{threadId}/schedule

Request fields

Path Type Required Description
scheduledFor String Y ISO 8601 date string in the future, must not be after year 2100
unscheduleOnCustomerReply Boolean Y Whether a new customer reply should unschedule the thread
sendAsCreator Boolean N Whether the reply should be sent as the draft original creator. Default false.

Response

HTTP/1.1 204 No Content