# platformDelete

Delete a platform

**Scope required:** product:write

```graphql
mutation platformDelete ($id: ID!) {
  platformDelete (id: $id) {
      errors
      platform {
        checkoutValidationEnabled
        code
        id
        name
        provisioningEnabled
        webhookAuthToken
        webhookSigningKey
        webhookUrl
      }
  }
}
```

## Arguments

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

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

## Response

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