***

title: delete
slug: /reference/typescript/rest/verified-callers/delete
description: Delete a verified caller ID.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Delete a verified caller ID.

<EndpointSchemaSnippet endpoint="DELETE /api/relay/rest/verified_caller_ids/{id}" />

## **Example**

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com"
});

await client.verifiedCallers.delete("caller-id");
console.log("Deleted successfully");
```