## Delete

`organizations.delete(strorganization_id, OrganizationDeleteParams**kwargs)`

**delete** `/organizations/{organization_id}`

Deletes the organization and all zones.

### Parameters

- `organization_id: str`

  Organization ID or label identifier

- `x_client_request_id: Optional[str]`

### Example

```python
import os
from keycardai_api import KeycardAPI

client = KeycardAPI(
    api_key=os.environ.get("KEYCARD_API_API_KEY"),  # This is the default and can be omitted
)
client.organizations.delete(
    organization_id="x",
)
```
