Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.44 KB

File metadata and controls

39 lines (30 loc) · 2.44 KB

OutDialConnectWebhook

A Call generated by OutDial has connected and the callConnectUrl is being invoked. This request is made in the context of the Call leg that was generated using OutDial and not the parent (the OutDialStart webhook is invoked on the parent call to continue that call context). A PerCL response is expected if the call was successfully connected (as indicated by status of inProgress) and begins the execution context for this (child) call.

Properties

Name Type Description Notes
request_type str Context or reason why this request is being made. Will be outDialConnect - A Call generated by OutDial has connected and the callConnectUrl 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_connect_webhook import OutDialConnectWebhook

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

# convert the object into a dict
out_dial_connect_webhook_dict = out_dial_connect_webhook_instance.to_dict()
# create an instance of OutDialConnectWebhook from a dict
out_dial_connect_webhook_from_dict = OutDialConnectWebhook.from_dict(out_dial_connect_webhook_dict)

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