Sha256: 505c53879fc8401836b8c2c1436a6727f3abf71c1a10ad1893cb9b7e3698cec8
Contents?: true
Size: 1.77 KB
Versions: 16
Compression:
Stored size: 1.77 KB
Contents
# Bandwidth::UpdateConference ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **status** | [**ConferenceStateEnum**](ConferenceStateEnum.md) | | [optional][default to 'active'] | | **redirect_url** | **String** | The URL to send the [conferenceRedirect](/docs/voice/webhooks/conferenceRedirect) event which will provide new BXML. Not allowed if `state` is `completed`, but required if `state` is `active`. | [optional] | | **redirect_method** | [**RedirectMethodEnum**](RedirectMethodEnum.md) | | [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**](RedirectMethodEnum.md) | | [optional][default to 'POST'] | | **fallback_username** | **String** | Basic auth username. | [optional] | | **fallback_password** | **String** | Basic auth password. | [optional] | ## Example ```ruby 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! ) ```
Version data entries
16 entries across 16 versions & 1 rubygems