***

title: reset
slug: /reference/typescript/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**

```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 result = await client.video.conferenceTokens.reset("token-id");
```