Update invoice
documentedUpdate 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 runsNo 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}} }'