Conference Streams

Create a Conference Stream.

Create a stream for an existing conference.

Permissions

The API token must include the following scopes: Voice.

post/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Streams

Path parameters

AccountSidstring uuid required

The unique identifier for the account that is associated with this stream.

ConferenceSidstring uuid required

The unique identifier for the conference that is associated with this stream.

Response

OK

account_sidstring uuid required

The unique identifier for the account that is associated with this stream.

conference_sidstring required

The unique identifier for the conference that is associated with this stream.

sidstring required

The unique identifier for the stream.

namestring required

Unique name for the Stream, per Conference. It is used to stop a Stream by name.

status'in-progress' | 'stopped' required

The status of the stream.

date_updatedstring required

The date, in RFC 2822 format, this stream was updated.

uristring required

The URI of the stream.

Example response

{
  "account_sid": "abc123-def456-ghi789",
  "conference_sid": "conf_abc123",
  "sid": "stream_xyz789",
  "name": "my_conference_stream",
  "status": "in-progress",
  "date_updated": "Mon, 30 Oct 2023 15:35:13 +0000",
  "uri": "/api/laml/2010-04-01/Accounts/abc123-def456-ghi789/Conferences/conf_abc123/Streams/stream_xyz789.json"
}

Changes