> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/orders/llms.txt)
> Source: https://docs.saleor.io/api-reference/orders/mutations/invoice-send-notification

# invoiceSendNotification Mutation

Send an invoice notification to the customer.

Requires the MANAGE\_ORDERS permission.

Triggers the following webhook events:

-   INVOICE\_SENT (async): A notification for invoice send
-   NOTIFY\_USER (async): A notification for invoice send

```graphql
invoiceSendNotification(
  id: ID!
): InvoiceSendNotification
```

Details

```graphql
type InvoiceSendNotification {
  invoiceErrors: [InvoiceError!]! @deprecated
  errors: [InvoiceError!]!
  invoice: Invoice
}
```

<a id="arguments"></a>

### Arguments

<a id="id"></a>

#### [`id`](#id) ● [`ID!`](/api-reference/miscellaneous/scalars/id.md)

ID of an invoice to be sent.

<a id="type"></a>

### Type

<a id="invoicesendnotification"></a>

#### [`InvoiceSendNotification`](/api-reference/orders/objects/invoice-send-notification.md)

Send an invoice notification to the customer.

Requires the MANAGE\_ORDERS permission.

Triggers the following webhook events:

-   INVOICE\_SENT (async): A notification for invoice send
-   NOTIFY\_USER (async): A notification for invoice send
