v2

latestOpenAPI 3.0.0raw.githubusercontent.com2026-02-16143114179.4 KB
Invoices

Send invoice email

Send the invoice to a specified email address, or to the customer's email if none is provided.

post/api/invoices/{id}/send-email

Path parameters

idstring required

Invoice ID

Request body

emailstring

Recipient email address. Defaults to the customer email if omitted.

Example request

{
  "email": "customer@example.com"
}

Response

Email queued for delivery

messagestring required

Example response

{
  "message": "Operation completed successfully"
}