Sign in

Create appointment

documented

Create a new appointment.

POST /appointmentsAppointmentsno 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" \
  -u "{{ACUITYSCHEDULING_USER_ID}}:{{ACUITYSCHEDULING_API_KEY}}" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"datetime": "{{$datetime}}", "appointmentTypeID": {{$appointmentTypeID}}, "firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "email": "{{$email}}", "fields": [{"id": {{$field_id}}, "value": "{{$field_value}}"}]}'
Create appointment · acuityscheduling · OpenIntegrations