***

title: refresh_subscriber_token
slug: /reference/python/rest/fabric/tokens/refresh-subscriber-token
description: Refresh an existing subscriber token.
max-toc-depth: 3
---------------------

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

Refresh an existing [subscriber](/docs/platform/subscribers) authentication token.

<EndpointSchemaSnippet endpoint="POST /api/fabric/subscribers/tokens/refresh" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/fabric/subscribers/tokens/refresh" />

## **Example**

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

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

refreshed = client.fabric.tokens.refresh_subscriber_token(refresh_token="existing-refresh-token")
print(f"Refreshed token: {refreshed['token']}")
```