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

# invoiceRequestDelete Mutation

Requests deletion of an invoice.

Requires the MANAGE\_ORDERS permission.

Triggers the following webhook events:

-   INVOICE\_DELETED (async): An invoice was requested to delete.

```graphql
invoiceRequestDelete(
  id: ID!
): InvoiceRequestDelete
```

Details

```graphql
type InvoiceRequestDelete {
  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 request the deletion.

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

### Type

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

#### [`InvoiceRequestDelete`](/api-reference/orders/objects/invoice-request-delete.md)

Requests deletion of an invoice.

Requires the MANAGE\_ORDERS permission.

Triggers the following webhook events:

-   INVOICE\_DELETED (async): An invoice was requested to delete.
