Skip to main content
POST
/
service
/
general-ledger
/
invoices
/
{invoice_id}
/
send
curl -X POST https://kube.acho.io/service/general-ledger/invoices/INV-2024-001/send \
  -H "Authorization: jwt YOUR_TOKEN"
{
  "invoice_id": "INV-2024-001",
  "status": "Sent",
  "sent_at": "2024-01-16T10:00:00Z",
  "sent_to": "billing@acmecorp.com"
}

Request

Send an approved invoice to the customer. Status changes to “Sent”.

Headers

Authorization
string
required
JWT authentication token. Format: jwt YOUR_TOKEN

Path Parameters

invoice_id
string
required
The invoice ID
curl -X POST https://kube.acho.io/service/general-ledger/invoices/INV-2024-001/send \
  -H "Authorization: jwt YOUR_TOKEN"
{
  "invoice_id": "INV-2024-001",
  "status": "Sent",
  "sent_at": "2024-01-16T10:00:00Z",
  "sent_to": "billing@acmecorp.com"
}