***

title: update
slug: /reference/typescript/rest/video/conferences/update
description: Replace a video conference using PUT.
max-toc-depth: 3
---------------------

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

Replace a video conference. Uses PUT for full replacement, so all fields must be
provided in the request body.

<Note>
  This method performs a full replacement (PUT), not a partial update (PATCH).
  Include all fields you want to keep in the request body.
</Note>

<EndpointSchemaSnippet endpoint="PUT /api/video/conferences/{id}" />

## **Response Example**

<EndpointResponseSnippet endpoint="PUT /api/video/conferences/{id}" />

## **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 conf = await client.video.conferences.update("conference-id", {
  display_name: "Team Meeting v2",
});
```