Create invoice
documentedCreate a new invoice for a booking
POST /api2/facturenInvoicesno 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://demo.recras.nl/api2/facturen" \
-X POST \
-H "Authorization: Bearer {{RECRAS_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"boeking_id": {{$boeking_id}}, "context": "{{$context}}", "status": "{{$status}}", "voorschot_percentage": {{$voorschot_percentage}}, "mail_to": {{$mail_to}}, "mail_cc": {{$mail_cc}}, "mail_subject": "{{$mail_subject}}", "mail_body": "{{$mail_body}}", "mail_signature": "{{$mail_signature}}", "reference_external": "{{$reference_external}}"}'