Sign in

Update invoice

documented

Update an invoice. ([developers.activecollab.com](https://developers.activecollab.com/api-documentation/v1/invoicing/invoices/invoices.html?utm_source=openai))

PUT /invoices/{id}Invoicingno 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://activecollab.com/api/v1/invoices/{{$invoice_id}}" \
  -X PUT \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"project_id": {{$project_id}}, "due_date": "{{$due_date}}", "currency": "{{$currency}}", "notes": "{{$notes}}", "items": {{$items}} }'
Update invoice · activecollab · OpenIntegrations