Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.77 KB

UpdateConference.md

File metadata and controls

34 lines (28 loc) · 1.77 KB

Bandwidth::UpdateConference

Properties

Name Type Description Notes
status ConferenceStateEnum [optional][default to 'active']
redirect_url String The URL to send the conferenceRedirect event which will provide new BXML. Not allowed if `state` is `completed`, but required if `state` is `active`. [optional]
redirect_method RedirectMethodEnum [optional][default to 'POST']
username String Basic auth username. [optional]
password String Basic auth password. [optional]
redirect_fallback_url String A fallback url which, if provided, will be used to retry the `conferenceRedirect` webhook delivery in case `redirectUrl` fails to respond. Not allowed if `state` is `completed`. [optional]
redirect_fallback_method RedirectMethodEnum [optional][default to 'POST']
fallback_username String Basic auth username. [optional]
fallback_password String Basic auth password. [optional]

Example

require 'bandwidth-sdk'

instance = Bandwidth::UpdateConference.new(
  status: null,
  redirect_url: https://myServer.example/bandwidth/webhooks/conferenceRedirect,
  redirect_method: null,
  username: mySecretUsername,
  password: mySecretPassword1!,
  redirect_fallback_url: https://myFallbackServer.example/bandwidth/webhooks/conferenceRedirect,
  redirect_fallback_method: null,
  fallback_username: mySecretUsername,
  fallback_password: mySecretPassword1!
)