# customFieldDelete

Delete a custom field definition

**Scope required:** admin:write

```graphql
mutation customFieldDelete ($id: ID!) {
  customFieldDelete (id: $id) {
      errors
      success
  }
}
```

## Arguments

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

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

## Response

| Name    | Type          | Description |
| ------- | ------------- | ----------- |
| errors  | List (String) |             |
| success | Boolean       |             |
