DELETE
/
delete-retell-llm
/
{llm_id}
import Retell from 'retell-sdk';

const client = new Retell({
  apiKey: 'YOUR_RETELL_API_KEY',
});

async function main() {
  await client.llm.delete('oBeDLoLOeuAbiuaMFXRtDOLriTJ5tSxD');
}

main();
This response does not have an example.

Authorizations

Authorization
string
header
required

Authentication header containing API key (find it in dashboard). The format is "Bearer YOUR_API_KEY"

Path Parameters

llm_id
string
required

Unique id of the Retell LLM Response Engine to be deleted. Deletes all versions of the Retell LLM Response Engine.

Example:

"oBeDLoLOeuAbiuaMFXRtDOLriTJ5tSxD"

Response

204

No Content