Skip to main content

Conference Created

The Conference Created event is fired whenever a new conference that specified a callbackUrl is created.

The response may be either empty or a BXML document. Only the following verbs are valid for conferences:

Audio verbs will be heard by all members of the conference. Recordings capture audio from all members who are not muted or on hold, as well as any audio verbs that are played into the conference.

Request Parameters

PropertyDescription
eventTypeThe event type, value is conferenceCreated.
eventTimeThe approximate UTC date and time when the event was generated by the Bandwidth server, in ISO 8601 format. This may not be exactly the time of event execution.
conferenceIdThe ID of the new conference that was created.
nameThe custom name used to reference this conference. This is the name that you included inside the body of the <Conference> tag.
tag(optional) The tag that was set at conference creation. If no tag was specified, this field will not be present.

Expected Response

HTTP/1.1 200
Content-Type: application/xml; charset=utf-8

<Response>
<!-- BXML verbs to execute in the conference -->
</Response>

Examples

Conference Created

POST http://yourUrl.example/conferenceCreated
Content-Type: application/json

{
"conferenceId" : "conf-59082d52-4a2ab5be-ce26-43ed-af94-431b8a19d4e3",
"name" : "thisConference",
"eventType" : "conferenceCreated",
"eventTime" : "2019-07-31T13:16:01.324Z",
"tag" : "conferenceTag"
}