Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.57 KB

File metadata and controls

34 lines (25 loc) · 1.57 KB

CallControlWebhook

The digit sequence defined in the callControlSequence attribute of the AddToConference PerCL command has been entered by the Conference participant. A PerCL response is expected. If invalid PerCL is provided, the call leg which triggered this webhook will terminate.

Properties

Name Type Description Notes
request_type str Context or reason why this request is being made. Will be callControl. [optional]
call_id str Unique ID for this Call, generated by FreeClimb. [optional]
account_id str Account ID associated with your account. [optional]
conference_id str Unique ID of the Conference. [optional]
digits str String of digits entered by the participant. [optional]

Example

from freeclimb.models.call_control_webhook import CallControlWebhook

# TODO update the JSON string below
json = "{}"
# create an instance of CallControlWebhook from a JSON string
call_control_webhook_instance = CallControlWebhook.from_json(json)
# print the JSON string representation of the object
print(CallControlWebhook.to_json())

# convert the object into a dict
call_control_webhook_dict = call_control_webhook_instance.to_dict()
# create an instance of CallControlWebhook from a dict
call_control_webhook_from_dict = CallControlWebhook.from_dict(call_control_webhook_dict)

[Back to Model list] [Back to API list] [Back to README]