Skip to main content
PUT
/
editevent
Update Event
curl --request PUT \
  --url https://api.example.com/editevent \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 123
}'
{
  "status": "success",
  "data": {
    "id": 10,
    "title": "Board Meeting (Updated)",
    "start_time": "2025-07-01T10:00:00Z",
    "end_time": "2025-07-01T12:00:00Z",
    "timezone": "Africa/Lagos",
    "record_meeting": true
  }
}

Request Body

id
integer
required
Event ID to update.
All other fields from Create Event are accepted. Only provided fields will be updated.
If you change the meeting_link or start_time on an event with recording enabled, the meeting bot is automatically rescheduled.

Response

{
  "status": "success",
  "data": {
    "id": 10,
    "title": "Board Meeting (Updated)",
    "start_time": "2025-07-01T10:00:00Z",
    "end_time": "2025-07-01T12:00:00Z",
    "timezone": "Africa/Lagos",
    "record_meeting": true
  }
}