Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 843 Bytes

WebhookWithSecret.md

File metadata and controls

26 lines (20 loc) · 843 Bytes

TCAClient::WebhookWithSecret

Properties

Name Type Description Notes
signing_secret File a sercret used to sign all callbacks for this webhook
description String a human readable description of the webhook [optional]
url String the URL to callback with events, this must be https unless (allow_insecure is true)
allow_insecure Boolean if using an non https url, this must be set to true [optional]
event_types Array<String> an array of the types of callbacks that will be sent to this webhook

Example

require 'tca_client'

instance = TCAClient::WebhookWithSecret.new(
  signing_secret: null,
  description: null,
  url: null,
  allow_insecure: null,
  event_types: null
)