---
title: "Update conference details"
method: PUT
path: "/conferences/{id}"
tags: ["Conference"]
---

# Update conference details

`PUT /conferences/{id}`

Update the details of a specific conference.

## Path parameters

- `id` string, required

## Request body

- object
  - `name` string, required
  - `detail` string, required
  - `data` object, required — Custom data associated with the conference.
  - `timeout` integer, required
  - `pre_flow_id` string, required
  - `post_flow_id` string, required

## Response `200`

- ConferenceManagerConference
  - `id` string, uuid — Unique identifier for the conference.
  - `customer_id` string, uuid — Unique identifier of the associated customer. Returned from the `GET /customers` response.
  - `type` '' | 'conference' | 'connect' | 'queue' — Types of conferences.
  - `status` 'starting' | 'progressing' | 'terminating' | 'terminated' — Status of the conference.
  - `name` string — Name of the conference.
  - `detail` string — Detailed information about the conference.
  - `data` object — Custom key-value data associated with the conference.
  - `timeout` integer — Timeout for the conference in seconds.
  - `pre_flow_id` string, uuid — The unique identifier of the flow to execute before the conference starts. Returned from the `POST /flows` or `GET /flows` response.
  - `post_flow_id` string, uuid — The unique identifier of the flow to execute after the conference ends. Returned from the `POST /flows` or `GET /flows` response.
  - `conferencecall_ids` string[] — List of associated conference call IDs. Each ID is returned from the `GET /conferencecalls` response.
  - `recording_id` string, uuid — ID of the main recording associated with the conference. Returned from the `GET /recordings` response.
  - `recording_ids` string[] — List of associated recording IDs. Each ID is returned from the `GET /recordings` response.
  - `transcribe_id` string, uuid — ID of the main transcription associated with the conference. Returned from the `GET /transcribes` response.
  - `transcribe_ids` string[] — List of associated transcription IDs. Each ID is returned from the `GET /transcribes` response.
  - `direct_hash` string — The direct hash for direct access via SIP URI sip:<direct_hash>@sip.voipbin.net (the "direct." prefix is already included in the value, e.g. "direct.a1b2c3d4e5f6"). Returned from the resource's `direct_hash` field.
  - `tm_end` string, date-time — Timestamp when the conference ended.
  - `tm_create` string, date-time — Timestamp when the conference was created.
  - `tm_update` string, date-time — Timestamp when the conference was last updated.
  - `tm_delete` string, date-time — Timestamp when the conference was deleted.

## Other responses

- `400` — Invalid request (INVALID_ARGUMENT).
- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `404` — Resource not found (NOT_FOUND).
- `500` — Internal error (INTERNAL).

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/versions/79e779080bcc/schema)
