Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.16 KB

File metadata and controls

39 lines (30 loc) · 2.16 KB

InboundCallWebhook

An inbound Call to a number registered on FreeClimb will trigger a request to the voiceUrl of the application the number is assigned to. FreeClimb expects to receive PerCL in response to this request in order to process the Call. The following parameters are sent as the POST body.

Properties

Name Type Description Notes
request_type str Context or reason why this request is being made. Will be inboundCall - An inbound call was received and the voiceUrl 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 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 [optional]

Example

from freeclimb.models.inbound_call_webhook import InboundCallWebhook

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

# convert the object into a dict
inbound_call_webhook_dict = inbound_call_webhook_instance.to_dict()
# create an instance of InboundCallWebhook from a dict
inbound_call_webhook_from_dict = InboundCallWebhook.from_dict(inbound_call_webhook_dict)

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