Skip to main content

Conference Redirect

The Conference Redirect event is fired whenever an existing conference is modified via a POST request made to the /conferences/{conferenceId} endpoint.

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

Request Parameters

PropertyDescription
eventTypeThe event type, value is conferenceRedirect.
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 conference.
nameThe custom name used to reference this conference. This 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 Redirect

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

{
"conferenceId" : "conf-59082d52-4a2ab5be-ce26-43ed-af94-431b8a19d4e3",
"name" : "thisConference",
"eventType" : "conferenceRedirect",
"eventTime" : "2019-09-13T16:50:53.788Z"
}