---
title: "Get conference call details"
method: GET
path: "/conferencecalls/{id}"
tags: ["Conference"]
---

# Get conference call details

`GET /conferencecalls/{id}`

Retrieve detailed information about a specific conference call using its ID.

## Path parameters

- `id` string, required

## Response `200`

Detailed information about a conference call.

- ConferenceManagerConferencecall
  - `id` string, uuid — Unique identifier for the conference call.
  - `customer_id` string, uuid — Unique identifier of the associated customer. Returned from the `GET /customers` response.
  - `activeflow_id` string, uuid — Activeflow ID associated with this conference call. Returned from the `POST /activeflows` or `GET /activeflows` response.
  - `conference_id` string, uuid — Unique identifier of the associated conference. Returned from the `GET /conferences` response.
  - `reference_type` 'call' — Type of the reference associated with the conference call.
  - `reference_id` string, uuid — The unique identifier of the referenced resource. The actual resource type is determined by reference_type. Returned from the corresponding resource endpoint.
  - `status` 'joining' | 'joined' | 'leaving' | 'leaved' — Status of the conference call.
  - `tm_create` string, date-time — Timestamp when the conference call was created.
  - `tm_update` string, date-time — Timestamp when the conference call was last updated.
  - `tm_delete` string, date-time — Timestamp when the conference call 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)
