Sign in

Update appointment

documented

Update an appointment's details (a whitelist of updatable attributes).

PUT /appointments/{id}Appointmentsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://acuityscheduling.com/api/v1/appointments/{{$appointment_id}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"datetime": "{{$datetime}}", "appointmentTypeID": {{$appointmentTypeID}}, "firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "email": "{{$email}}", "fields": [{"id": {{$field_id_1}}, "value": "{{$field_value_1}}"}], "notes": "{{$notes}}"}'
Update appointment · acuityscheduling · OpenIntegrations