v1

latestOpenAPI 3.1.02026-07-1413113265.9 KB
message

edit scheduled event

Edits an existing scheduled event message with updated details.

post/instances/{id}/client/action/edit-scheduled-event

Path parameters

idinteger required

Instance ID

Request body

messageIdstring required

The serialized message ID of the event to edit

namestring

Updated name of the event

startTimeTsinteger

Updated start time as a Unix timestamp

Example request

{
  "messageId": "true_1234567890@c.us_ABCDEF1234567890",
  "name": "Updated Team Meeting",
  "startTimeTs": 1712743200,
  "eventSendOptions": {
    "description": "Updated meeting description",
    "endTimeTs": 1712746800,
    "location": "Conference Room B",
    "callType": "voice"
  }
}

Response

Scheduled event updated successfully

status'success' | 'error'
instanceIdstring

Example response

{
  "status": "success",
  "instanceId": "1",
  "data": {
    "messageId": "true_1234567890@c.us_ABCDEF1234567890"
  }
}