***

title: update
slug: /reference/python/rest/fabric/subscribers/update
description: Replace a subscriber resource.
max-toc-depth: 3
---------------------

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

Replace a [subscriber](/docs/platform/subscribers) resource. Uses PUT, so the full resource body must be provided.

<EndpointSchemaSnippet endpoint="PUT /api/fabric/resources/subscribers/{id}" />

## **Response Example**

<EndpointResponseSnippet endpoint="PUT /api/fabric/resources/subscribers/{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.fabric.subscribers.update("subscriber-id", name="bob")
print(f"Updated: {updated['display_name']}")
```