Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.86 KB

WebhookRequest.md

File metadata and controls

40 lines (31 loc) · 1.86 KB

WebhookRequest

A Webhook Object

Properties

Name Type Description Notes
pki_webhook_id int The unique ID of the Webhook [optional]
fki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype. [optional]
s_webhook_description str The description of the Webhook
e_webhook_module FieldEWebhookModule
e_webhook_ezsignevent FieldEWebhookEzsignevent [optional]
e_webhook_managementevent FieldEWebhookManagementevent [optional]
s_webhook_url str The URL of the Webhook callback
s_webhook_emailfailed str The email that will receive the Webhook in case all attempts fail
b_webhook_isactive bool Whether the Webhook is active or not
b_webhook_issigned bool Whether the requests will be signed or not [optional]
b_webhook_skipsslvalidation bool Wheter the server's SSL certificate should be validated or not. Not recommended to skip for production use

Example

from eZmaxApi.models.webhook_request import WebhookRequest

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

# convert the object into a dict
webhook_request_dict = webhook_request_instance.to_dict()
# create an instance of WebhookRequest from a dict
webhook_request_form_dict = webhook_request.from_dict(webhook_request_dict)

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