Skip to main content
PATCH
/
appointments
/
{ticketId}
Edit an appointment
curl --request PATCH \
  --url https://api.qminder.com/v1/appointments/{ticketId} \
  --header 'Content-Type: application/json' \
  --header 'X-Qminder-API-Version: <x-qminder-api-version>' \
  --header 'X-Qminder-REST-API-Key: <api-key>' \
  --data '
{
  "startTime": "2024-12-15T11:00:00Z",
  "endTime": "2024-12-15T11:30:00Z"
}
'

Authorizations

X-Qminder-REST-API-Key
string
header
default:yourbusinessapikey
required

Headers

X-Qminder-API-Version
enum<string>
required

API version. Must be set to 2020-09-01.

Available options:
2020-09-01

Path Parameters

ticketId
string
required

ID of the appointment ticket to update

Body

application/json
startTime
string<date-time>

New appointment start time in ISO 8601 format.

endTime
string<date-time>

New appointment end time in ISO 8601 format.

assigneeId
integer

ID of the user to reassign the appointment to.

Response

Appointment updated successfully