## Delete `client.responses.delete(stringid, RequestOptionsoptions?): ResponseDeleteResponse` **delete** `/v1/responses/{id}` Permanently delete a response and all its output items. ### Parameters - `id: string` ### Returns - `ResponseDeleteResponse` - `id?: string` - `deleted?: boolean` - `object?: string` ### Example ```typescript import Lightcone from '@tzafon/lightcone'; const client = new Lightcone({ apiKey: process.env['TZAFON_API_KEY'], // This is the default and can be omitted }); const response = await client.responses.delete('id'); console.log(response.id); ```