***

title: update
slug: /reference/python/rest/verified-callers/update
description: Update a verified caller ID.
max-toc-depth: 3
---------------------

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

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**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

updated = client.verified_callers.update("caller-id", name="Main Office")
print(f"Updated: {updated['id']}")
```