Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2 KB

RedirectWebhook.md

File metadata and controls

39 lines (30 loc) · 2 KB

RedirectWebhook

The Redirect command is executing and its actionUrl is being invoked. A PerCL response is expected.

Properties

Name Type Description Notes
request_type str Context or reason why this request is being made. Will be redirect - The Redirect command is executing and its actionUrl 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 provisioned to the customer and to which this Call is directed (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 Call that created this leg (child call). [optional]

Example

from freeclimb.models.redirect_webhook import RedirectWebhook

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

# convert the object into a dict
redirect_webhook_dict = redirect_webhook_instance.to_dict()
# create an instance of RedirectWebhook from a dict
redirect_webhook_from_dict = RedirectWebhook.from_dict(redirect_webhook_dict)

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