Email an approved (saved) invoice. See schema for options, such as customizing the subject or attaching a PDF of the invoice.

Replace <INVOICE_ID> with a real id.

Operation
mutation ($input: InvoiceSendInput!) {
  invoiceSend(input: $input) {
    didSucceed
    inputErrors {
      message
      code
      path
    }
  }
}
Operation Variables
{
  "input": {
    "invoiceId": "<INVOICE_ID>",
    "to": ["email@example.com"],
    "message": "Customized message",
    "attachPDF": <true|false>
  }
}
Updated: