## Delete an API key `client.apiKeys.delete(stringid, RequestOptionsoptions?): void` **delete** `/v1/api_keys/{id}` Deletes an API key from the workspace ### Parameters - `id: string` ### Example ```typescript import Cadenya from '@cadenya/cadenya'; const client = new Cadenya({ apiKey: process.env['CADENYA_API_KEY'], // This is the default and can be omitted }); await client.apiKeys.delete('id'); ```