Skip to main content
POST
/
api
/
v1
/
calendar-bookings
/
{bookingId}
/
reschedule
Reschedule a booking
curl --request POST \
  --url https://prod.featherhq.com/api/v1/calendar-bookings/{bookingId}/reschedule \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "startTime": "2023-11-07T05:31:56Z",
  "timezone": "<string>",
  "cancellationReason": "<string>"
}
'
{
  "id": "<string>",
  "organizationId": "<string>",
  "calendarId": "<string>",
  "eventTypeId": "<string>",
  "title": "<string>",
  "description": "<string>",
  "startTime": "<string>",
  "endTime": "<string>",
  "timezone": "<string>",
  "status": "CONFIRMED",
  "attendeeName": "<string>",
  "attendeeEmail": "<string>",
  "attendeePhone": "<string>",
  "location": "<string>",
  "meetLink": "<string>",
  "agentCallId": "<string>",
  "leadId": "<string>",
  "cancelledAt": "<string>",
  "cancellationReason": "<string>",
  "rescheduledFromId": "<string>",
  "rescheduledToId": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "metadata": null
}

Authorizations

X-API-Key
string
header
required

Path Parameters

bookingId
string
required

Body

application/json
startTime
string<date-time>
required
timezone
string
cancellationReason
string
Maximum string length: 1000

Response

Booking rescheduled — returns the new booking

id
string
required
organizationId
string
required
calendarId
string
required
eventTypeId
string
required
title
string
required
description
string | null
required
startTime
string
required
endTime
string
required
timezone
string
required
status
enum<string>
required
Available options:
CONFIRMED,
CANCELLED,
RESCHEDULED,
NO_SHOW
attendeeName
string | null
required
attendeeEmail
string | null
required
attendeePhone
string | null
required
location
string | null
required
agentCallId
string | null
required
leadId
string | null
required
cancelledAt
string | null
required
cancellationReason
string | null
required
rescheduledFromId
string | null
required
rescheduledToId
string | null
required
createdAt
string
required
updatedAt
string
required
metadata
unknown