Sign in

Update invoice payment

documented

Update a payment on an invoice

PUT /api2/facturen/{id}/betalingen/{id}Invoice Paymentsno 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://demo.recras.nl/api2/facturen/{{$factuur_id}}/betalingen/{{$betaling_id}}" \
  -X PUT \
  -H "Authorization: Bearer {{RECRAS_API_KEY}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"id": {{$betaling_id}}, "factuur_id": {{$factuur_id}}, "wanneer": "{{$when}}", "bedrag": {{$amount}}, "opmerking": "{{$remark}}", "betaalmethode_id": {{$payment_method_id}}, "pos_id": {{$pos_id}}, "location_id": {{$location_id}}, "btw": {"{{$vat_rate_id}}": {"btw": {{$vat_rate_value}}, "bedrag": {{$vat_amount}} } }, "klant": {"id": {{$customer_id}}, "naam": "{{$customer_name}}" } }'"