Skip to main content
PUT
/
v1
/
events
/
{id}
cURL
curl --request PUT \
  --url https://api.novacal.io/v1/events/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "start": "2023-11-07T05:31:56Z",
  "end": "2023-11-07T05:31:56Z",
  "timezone": "<string>",
  "time_format": 12,
  "form_field_answers": {}
}
'
{
  "success": true,
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "start": "2023-11-07T05:31:56Z",
    "end": "2023-11-07T05:31:56Z",
    "canceled_at": "2023-11-07T05:31:56Z",
    "cancellation_reason": "<string>",
    "location": "<string>",
    "form_field_answers": {
      "name": "John Doe",
      "email": "john@example.com"
    },
    "status": "<string>",
    "name": "<string>",
    "organizer": {
      "first_name": "<string>",
      "last_name": "<string>",
      "name": "<string>",
      "email": "jsmith@example.com",
      "username": "<string>",
      "timezone": "<string>",
      "time_format": 12,
      "start_of_week": 0,
      "avatar": "<string>"
    },
    "hosts": [
      {
        "first_name": "<string>",
        "last_name": "<string>",
        "name": "<string>",
        "email": "jsmith@example.com",
        "username": "<string>",
        "timezone": "<string>",
        "time_format": 12,
        "start_of_week": 0,
        "avatar": "<string>"
      }
    ],
    "booker": {
      "name": "<string>",
      "email": "jsmith@example.com",
      "timezone": "<string>",
      "time_format": 12
    },
    "guests": [
      "jsmith@example.com"
    ]
  }
}
This endpoint requires a public API bearer token. The authenticated API key identifies the caller integration. It does not replace the existing event booker.

When to use this endpoint

Use this endpoint when an existing booking needs to move to a different time or timezone without creating a brand new event record.

Before you reschedule

  • Confirm you are targeting the correct event ID
  • Submit the updated scheduling fields you want to change
  • Keep in mind that the authenticated token identifies the integration, not the attendee

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

ID of event to reschedule

Body

application/json

Event rescheduling payload

start
string<date-time>
required

The new event start date and time

end
string<date-time>
required

The new event end date and time

timezone
string
required

The timezone submitted for the reschedule request

time_format
enum<integer>
required

The preferred time format submitted for the reschedule request

Available options:
12,
24
form_field_answers
object

Optional updated answers for fields visible on reschedule

Response

200 - application/json

Event rescheduled successfully

success
boolean
required

Indicates whether the request was successful

Example:

true

data
object
required