Search + K

Command Palette

Search for a command to run...

Sign In

Fetch an instance of a conference

GET /2010-04-01/Accounts/{AccountSid}/Conferences/{Sid}.json
Copy endpoint
https://api.twilio.com

Fetch an instance of a conference

Parameters

path Path Parameters

Name Type
AccountSid required

The SID of the Account that created the Conference resource(s) to fetch.

`AC${string}`
Sid required

The Twilio-provided string that uniquely identifies the Conference resource to fetch

`CF${string}`

Responses

200 application/json

OK

interface ApiV2010AccountConference {
account_sid?: `AC${string}` | null;
date_created?: string | null;
date_updated?: string | null;
api_version?: string | null;
friendly_name?: string | null;
region?: string | null;
sid?: `CF${string}` | null;
status?: ConferenceEnumStatus

The status of this conference. Can be: init, in-progress, or completed.

type ConferenceEnumStatus = "init" | "in-progress" | "completed"
;
uri?: string | null;
subresource_uris?: {} | null;
reason_conference_ended?: ConferenceEnumReasonConferenceEnded

The reason why a conference ended. When a conference is in progress, will be null. When conference is completed, can be: conference-ended-via-api, participant-with-end-conference-on-exit-left, participant-with-end-conference-on-exit-kicked, last-participant-kicked, or last-participant-left.

type ConferenceEnumReasonConferenceEnded = "conference-ended-via-api" | "participant-with-end-conference-on-exit-left" | "participant-with-end-conference-on-exit-kicked" | "last-participant-kicked" | "last-participant-left"
;
call_sid_ending_conference?: `CA${string}` | null;
}