Bid Project Agreement
documentedCreate a project bid/agreement with suggested times and pricing.
POST /2025-12/projects/bidProjectsno 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://{{$subdomain}}.partner-platform.taskrabbit.com/2025-12/projects/bid" \
-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 '{
"service_id": "{{$service_id}}",
"address": {
"line1": "{{$address_line1}}",
"city": "{{$city}}",
"state": "{{$state}}",
"postal_code": "{{$postal_code}}"
},
"appointment": {
"date": "{{$date}}",
"start_time": "{{$start_time}}",
"end_time": "{{$end_time}}",
"duration_minutes": {{$duration}}
},
"notes": "{{$notes}}",
"items": [
{ "item_id": "{{$item_id}}", "quantity": {{$quantity}} }
]
}}'