Fetch an instance of a conference
GET
/2010-04-01/Accounts/{AccountSid}/Conferences/{Sid}.json 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 ;
uri?: string | null;
subresource_uris?: {} | null;
reason_conference_ended?:ConferenceEnumReasonConferenceEnded ;
call_sid_ending_conference?: `CA${string}` | null;
}
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?:
uri?: string | null;
subresource_uris?: {} | null;
reason_conference_ended?:
call_sid_ending_conference?: `CA${string}` | null;
}