Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.65 KB

WebhookRequest.md

File metadata and controls

38 lines (32 loc) · 1.65 KB

EzmaxApi::WebhookRequest

Properties

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

Example

require 'Ezmaxapi'

instance = EzmaxApi::WebhookRequest.new(
  pki_webhook_id: 77,
  fki_ezsignfoldertype_id: 5,
  s_webhook_description: Import into our system,
  e_webhook_module: null,
  e_webhook_ezsignevent: null,
  e_webhook_managementevent: null,
  s_webhook_url: https://www.example.com,
  s_webhook_emailfailed: email@example.com,
  b_webhook_isactive: true,
  b_webhook_issigned: true,
  b_webhook_skipsslvalidation: false
)