***

title: reset
slug: /reference/python/rest/video/conference-tokens/reset
description: Reset a conference token, invalidating the current token and generating a new one.
max-toc-depth: 3
---------------------

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

Reset a conference token, invalidating the current token and generating a new one.

<EndpointSchemaSnippet endpoint="POST /api/video/conference_tokens/{id}/reset" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/video/conference_tokens/{id}/reset" />

## **Example**

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

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

result = client.video.conference_tokens.reset("token-id")
```