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"
}

Changes

Changed in 1 of the 2 revisions of this API.1