Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.48 KB

File metadata and controls

40 lines (31 loc) · 2.48 KB

RemoveFromQueueNotificationWebhook

A call has been removed from a queue and the Enqueue command’s actionUrl is being invoked. A PerCL response is expected except if reason is hangup.

Properties

Name Type Description Notes
request_type str Context or reason why this request is being made. Will be removeFromQueueNotification - A Call has been removed from a Queue and the Enqueue command’s 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]
queue_result QueueResultStatus [optional]
queue_time int Time (in seconds) the Call spent in the Queue. This is only available if the Call was actually enqueued. [optional]

Example

from freeclimb.models.remove_from_queue_notification_webhook import RemoveFromQueueNotificationWebhook

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

# convert the object into a dict
remove_from_queue_notification_webhook_dict = remove_from_queue_notification_webhook_instance.to_dict()
# create an instance of RemoveFromQueueNotificationWebhook from a dict
remove_from_queue_notification_webhook_from_dict = RemoveFromQueueNotificationWebhook.from_dict(remove_from_queue_notification_webhook_dict)

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