Create booking proposition
documentedInstantiate a new booking proposition for a booking
POST /api2/boekingen/{booking_id}/boekingsvoorstellenBooking Propositionsno 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://{{$recras_subdomain}}.recras.nl/api2/boekingen/{{$booking_id}}/boekingsvoorstellen" \
-X POST \
-H "Authorization: Bearer {{RECRAS_API_KEY}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"template_id": {{$template_id}}, "values": {"title": "{{$title}}", "startmoment": "{{$startmoment}}", "endmoment": "{{$endmoment}}", "notes": "{{$notes}}", "participants": {{$participants}}, "customer": {"name": "{{$customer_name}}", "email": "{{$customer_email}}", "phone": "{{$customer_phone}}"} } }'