Sha256: 8d93c2896d4cdccaa89157540014d0da9a4b8dea0a463961483ff4dd09b16b1a
Contents?: true
Size: 764 Bytes
Versions: 16
Compression:
Stored size: 764 Bytes
Contents
module Plaid # Public: Class used to call the Webhooks endpoint. class Webhooks < BaseProduct # Public: Retrieve a webhook verification key. # # key_id - The key ID from the Plaid-Verification header. # # Returns a WebhookVerificationKeyGetResponse object. def get_verification_key(key_id) post_with_auth 'webhook_verification_key/get', WebhookVerificationKeyGetResponse, key_id: key_id end # Public: The response wrapper for /webhook_verification_key/get. class WebhookVerificationKeyGetResponse < Models::BaseResponse ## # :attr_reader: # Public: The webhook verification key. property :key, coerce: Models::WebhookVerificationKey end end end
Version data entries
16 entries across 16 versions & 1 rubygems