InvoiceSent
Event sent when invoice is sent.
Added in Saleor 3.2type InvoiceSent implements Event {
  issuedAt: DateTime
  version: String
  issuingPrincipal: IssuingPrincipal
  recipient: App
  invoice: Invoice
  order: Order
}
Fields
InvoiceSent.issuedAt ● DateTime scalar miscellaneous
Time of the event.
InvoiceSent.version ● String scalar miscellaneous
Saleor version that triggered the event.
InvoiceSent.issuingPrincipal ● IssuingPrincipal union miscellaneous
The user or application that triggered the event.
InvoiceSent.recipient ● App object apps
The application receiving the webhook.
InvoiceSent.invoice ● Invoice object orders
The invoice the event relates to.
InvoiceSent.order ● Order object orders
Order related to the invoice.
Added in Saleor 3.10