Sign in

Create Appointment Request

documented

Create an appointment request for a given project.

POST /2025-12/projects/{project_uuid}/appointmentsProjectsno 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://{{$api_subdomain}}.partner-platform.taskrabbit.com/2025-12/projects/{{$project_uuid}}/appointments" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"start_time": "{{$start_time}}", "duration_minutes": {{$duration_minutes}}, "address": {"line1": "{{$address_line1}}", "city": "{{$city}}", "state": "{{$state}}", "postal_code": "{{$postal_code}}", "country": "US"}, "customer": {"first_name": "{{$customer_first_name}}", "last_name": "{{$customer_last_name}}", "email": "{{$customer_email}}", "phone": "{{$customer_phone}}"}, "services": [ {"service_id": "{{$service_id}}", "title": "{{$service_title}}", "quantity": {{$service_quantity}} } ], "notes": "{{$notes}}", "timezone": "{{$timezone}}"}'"