Server SDKs
Build AI agents, control calls, send messages, and more
Retrieve a single conference by SID.
format: "uuid"
1{2 "sid": "b3877c40-da60-4998-90ad-b792e98472cf",3 "account_sid": "b3877c40-da60-4998-90ad-b792e98472af",4 "date_created": "Mon, 24 Sept 2018 21:00:00 +0000",5 "date_updated": "Tue, 25 Sept 2018 20:00:00 +0000",6 "friendly_name": "My Conference Room",7 "status": "init",8 "api_version": "2010-04-01",9 "region": "us1",10 "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences/b3877c40-da60-4998-90ad-b792e98472cf.json",11 "subresource_uris": {12 "participants": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences/b3877c40-da60-4998-90ad-b792e98472cf/Participants.json",13 "recordings": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Conferences/b3877c40-da60-4998-90ad-b792e98472cf/Recordings.json"14 }15}
1import { RestClient } from "@signalwire/sdk";23const client = new RestClient({4 project: "your-project-id",5 token: "your-api-token",6 host: "your-space.signalwire.com"7});89const conf = await client.compat.conferences.get("CF...");