Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.32 KB

File metadata and controls

39 lines (30 loc) · 2.32 KB

OutDialApiConnectWebhook

An outbound call initiated by the REST API has connected and the callConnectUrl specified in the API request is being invoked. A PerCL response is expected if the call was successfully connected (with status of inProgress).

Properties

Name Type Description Notes
request_type str Context or reason why this request is being made. Will be outDialApiConnect - An outbound call spawned by the REST API has connected and the callConnectUrl specified in the API request is being invoked. [optional]
account_id str Account ID associated with your account. [optional]
call_id str Unique identifier for this Call, generated by FreeClimb [optional]
var_from str Phone number of the party that initiated the Call (in E.164 format). [optional]
to str Phone number or SIP URL of the party that is receiving the call (phone number in E.164 format). [optional]
call_status CallStatus [optional]
direction CallDirection [optional]
conference_id str This is only populated if request pertains to a conference. Otherwise, it is set to null. [optional]
queue_id str This is only populated if the request pertains to a queue. Otherwise, it is set to null. [optional]
parent_call_id str ID of the Call that created this leg (child call). [optional]

Example

from freeclimb.models.out_dial_api_connect_webhook import OutDialApiConnectWebhook

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

# convert the object into a dict
out_dial_api_connect_webhook_dict = out_dial_api_connect_webhook_instance.to_dict()
# create an instance of OutDialApiConnectWebhook from a dict
out_dial_api_connect_webhook_from_dict = OutDialApiConnectWebhook.from_dict(out_dial_api_connect_webhook_dict)

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