# approverDelete

Delete an approver

**Scope required:** security:write

```graphql
mutation approverDelete ($id: ID!) {
  approverDelete (id: $id) {
      approver {
        id
        name
        userId
      }
      errors
  }
}
```

## Arguments

```json
{
  "id": "456123"
}
```

| Name | Type | Description |
| ---- | ---- | ----------- |
| id   | ID   |             |

## Response

| Name     | Type                                                                      | Description |
| -------- | ------------------------------------------------------------------------- | ----------- |
| approver | [Approver](https://docs.bunny.com/developer/api-reference/types/approver) |             |
| errors   | String                                                                    |             |
