Sign in

Update recurring invoice

documented

Update an existing recurring invoice.

PUT /api/rinv/{hash_key}Recurring Invoicesno 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://{{$subdomain}}.hiveage.com/api/rinv/{{$hash_key}}" \
  -X PUT \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -u "{{HIVEAGE_API_KEY}}:" \
  -d '{"recurring_invoice": {"summary": "{{$summary}}", "connection_id": {{$connection_id}}, "next_billing_date": "{{$next_billing_date}}", "occurrences": {{$occurrences}}, "interval": {{$interval}}, "interval_unit": "{{$interval_unit}}", "note": "{{$note}}"}}'