### Delete an invoice

`DELETE /api/v1/users/{id}/invoices/{invoiceId}`

Deletes a hand-created invoice. Auto-issued documents cannot be deleted here, for the same reason they cannot be edited.

- Authentication: manager session (JWT) or API token
- Permission: `prm_users_invoices_delete` (Delete user invoices)
- Risk: danger
- Rate limit bucket: `t_mutate`

#### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | integer | yes | Subscriber id. |
| `invoiceId` | path | integer | yes | Invoice id. |

