| Name |
Type |
Description |
Notes |
| state |
CallStateEnum |
|
[optional] [default to undefined] |
| redirectUrl |
string |
The URL to send the Redirect event to which will provide new BXML. Required if `state` is `active`. Not allowed if `state` is `completed`. |
[optional] [default to undefined] |
| redirectMethod |
RedirectMethodEnum |
|
[optional] [default to undefined] |
| username |
string |
Basic auth username. |
[optional] [default to undefined] |
| password |
string |
Basic auth password. |
[optional] [default to undefined] |
| redirectFallbackUrl |
string |
A fallback url which, if provided, will be used to retry the redirect callback delivery in case `redirectUrl` fails to respond. |
[optional] [default to undefined] |
| redirectFallbackMethod |
RedirectMethodEnum |
|
[optional] [default to undefined] |
| fallbackUsername |
string |
Basic auth username. |
[optional] [default to undefined] |
| fallbackPassword |
string |
Basic auth password. |
[optional] [default to undefined] |
| tag |
string |
A custom string that will be sent with this and all future callbacks unless overwritten by a future `tag` attribute or `<Tag>` verb, or cleared. May be cleared by setting `tag=""`. Max length 256 characters. Not allowed if `state` is `completed`. |
[optional] [default to undefined] |
import { UpdateCall } from 'bandwidth-sdk';
const instance: UpdateCall = {
state,
redirectUrl,
redirectMethod,
username,
password,
redirectFallbackUrl,
redirectFallbackMethod,
fallbackUsername,
fallbackPassword,
tag,
};
[Back to Model list] [Back to API list] [Back to README]