action twilio_fetch_conference { label: "FetchConference" description: "Fetch an instance of a conference" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Conferences/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "Sid"] additionalProperties: false } output: { type: "object" properties: { account_sid: { type: "string" description: "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created this Conference resource." } api_version: { type: "string" description: "The API version used to create this conference." } call_sid_ending_conference: { type: "string" description: "The call SID that caused the conference to end." } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that this resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } date_updated: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that this resource was last updated, specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } friendly_name: { type: "string" description: "A string that you assigned to describe this conference room. Maxiumum length is 128 characters." } reason_conference_ended: { type: "string" enum: ["conference-ended-via-api", "participant-with-end-conference-on-exit-left", "participant-with-end-conference-on-exit-kicked", "last-participant-kicked", "last-participant-left"] } region: { type: "string" description: "A string that represents the Twilio Region where the conference audio was mixed. May be `us1`, `ie1`, `de1`, `sg1`, `br1`, `au1`, and `jp1`. Basic conference audio will always be mixed in `us1`. Global Conference audio will be mixed nearest to the majority of participants." } sid: { type: "string" description: "The unique string that that we created to identify this Conference resource." } status: { type: "string" enum: ["init", "in-progress", "completed"] } subresource_uris: { type: "object" format: "uri-map" description: "A list of related resources identified by their URIs relative to `https://api.twilio.com`." } uri: { type: "string" description: "The URI of this resource, relative to `https://api.twilio.com`." } } } }