## Delete a variation `client.agentVariations.delete(stringid, AgentVariationDeleteParamsparams, RequestOptionsoptions?): void` **delete** `/v1/agents/{agentId}/variations/{id}` Deletes a variation from an agent ### Parameters - `id: string` - `params: AgentVariationDeleteParams` - `agentId: string` Agent ID (from path) ### 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.agentVariations.delete('id', { agentId: 'agentId' }); ```