Skip to main content
DELETE
/
v2
/
delete-call
/
{call_id}
JavaScript
import Retell from 'retell-sdk';

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

await client.call.delete('119c3f8e47135a29e65947eeb34cf12d');
{
  "status": "error",
  "message": "Invalid request format, please check API reference."
}

Authorizations

Authorization
string
header
required

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

Path Parameters

call_id
string
required

The call id to delete.

Example:

"119c3f8e47135a29e65947eeb34cf12d"

Response

Call successfully deleted. No content returned.