## Delete

`client.organizations.delete(stringorganizationID, OrganizationDeleteParamsparams?, RequestOptionsoptions?): void`

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

Deletes the organization and all zones.

### Parameters

- `organizationID: string`

  Organization ID or label identifier

- `params: OrganizationDeleteParams`

  - `xClientRequestID?: string`

    Unique request identifier specified by the originating caller and passed along by proxies.

### Example

```typescript
import KeycardAPI from '@keycardai/api';

const client = new KeycardAPI({
  apiKey: process.env['KEYCARD_API_API_KEY'], // This is the default and can be omitted
});

await client.organizations.delete('x');
```
