Create appointment
documentedCreate a new appointment.
POST /appointmentsAppointmentsno implementation yet0 runsNo 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}}"}]}'