Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 2.23 KB

File metadata and controls

41 lines (32 loc) · 2.23 KB

GetDigitsWebhook

A POST request with the following fields will be sent to the actionUrl provided in your GetDigits command.

Properties

Name Type Description Notes
request_type str Context or reason why this request is being made. Will be getDigits - The GetDigits command has completed and its actionUrl is being invoked. [optional]
call_id str Unique ID for this Call, generated by FreeClimb. [optional]
account_id str Account ID associated with your account. [optional]
var_from str Phone number of the party that initiated the Call (in E.164 format). [optional]
to str Phone number provisioned to you and to which this Call is directed (in E.164 format). [optional]
call_status CallStatus [optional]
direction CallDirection [optional]
conference_id str Unique ID of the Conference. [optional]
queue_id str This is only populated if the request pertains to a Queue. Otherwise, it is set to null. [optional]
digits str tring of digits entered by the Caller, excluding the terminating digit (if used). The string of digits will be replaced by 'xxxxx' when privacyMode is set to true [optional]
reason GetDigitsReason [optional]
parent_call_id str ID of the Call that created this leg (child call). [optional]

Example

from freeclimb.models.get_digits_webhook import GetDigitsWebhook

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

# convert the object into a dict
get_digits_webhook_dict = get_digits_webhook_instance.to_dict()
# create an instance of GetDigitsWebhook from a dict
get_digits_webhook_from_dict = GetDigitsWebhook.from_dict(get_digits_webhook_dict)

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