Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 865 Bytes

File metadata and controls

28 lines (22 loc) · 865 Bytes

Late::CreateWebhookSettingsRequest

Properties

Name Type Description Notes
name String Webhook name (max 50 characters) [optional]
url String Webhook endpoint URL (must be HTTPS in production) [optional]
secret String Secret key for HMAC-SHA256 signature verification [optional]
events Array<String> Events to subscribe to [optional]
is_active Boolean Enable or disable webhook delivery [optional]
custom_headers Hash<String, String> Custom headers to include in webhook requests [optional]

Example

require 'late-sdk'

instance = Late::CreateWebhookSettingsRequest.new(
  name: null,
  url: null,
  secret: null,
  events: null,
  is_active: null,
  custom_headers: null
)