Sign in

Update invoice

documented

Update an existing invoice.

PUT /api/invs/{hash_key}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/invs/{{$hash_key}}" \
  -X PUT \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "api_key: {{HIVEAGE_API_KEY}}" \
  -d '{"invoice": {"statement_no": "{{$statement_no}}", "summary": "{{$summary}}", "date": "{{$date}}", "due_date": "{{$due_date}}", "connection_id": {{$connection_id}}, "payment_options": {{$payment_options}}, "send_reminders": {{$send_reminders}}, "note": "{{$note}}"}}'