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

# update

> Update a verified caller ID.

Update a verified caller ID. Uses PUT.

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

## **Response Example**

<EndpointResponseSnippet endpoint="PUT /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"
});

const updated = await client.verifiedCallers.update("caller-id", { name: "Main Office" });
console.log(`Updated: ${updated.id}`);
```