Book a Project Agreement
documentedComplete the booking using an agreed project and customer data.
POST /2025-12/projects/bookProjectsno 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://{{$api_subdomain}}.partner-platform.taskrabbit.com/2025-12/projects/book" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "x-api-key: {{TASKRABBIT_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"project_id": "{{$project_id}}", "customer": {"first_name": "{{$customer_first_name}}", "last_name": "{{$customer_last_name}}", "email": "{{$customer_email}}", "phone": "{{$customer_phone}}", "address": {"line1": "{{$address_line1}}", "line2": "{{$address_line2}}", "city": "{{$city}}", "state": "{{$state}}", "postal_code": "{{$postal_code}}", "country": "{{$country}}"}}, "tos_accepted": "Y", "description": "{{$description}}", "partner_order_id": "{{$partner_order_id}}" }'