Sign in

Create an invoice

documented

Create a new invoice for a customer.

POST /api/v3/invoiceInvoicesno 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://{{CHARGEOVER_INSTANCE}}.chargeover.com/api/v3/invoice" \
  -u "{{CHARGEOVER_API_KEY}}:{{CHARGEOVER_SECRET}}" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"refnumber": "{{$refnumber}}", "external_key": "{{$external_key}}", "customer_id": {{$customer_id}}, "date": "{{$date}}", "currency_id": {{$currency_id}}, "line_items": [ { "item_id": {{$item_id}}, "paycycle": "{{$paycycle}}", "descrip": "{{$description}}", "line_rate": {{$line_rate}}, "line_quantity": {{$line_quantity}} } ], "memo": "{{$memo}}", "custom_1": "{{$custom_1}}", "custom_2": "{{$custom_2}}", "custom_3": "{{$custom_3}}", "custom_4": "{{$custom_4}}" }'
Create an invoice · chargeover · OpenIntegrations