Class used to call the Webhooks endpoint.
Sections
Namespace
Methods
Public
Instance Public methods
get_verification_key(key_id)
Link
Retrieve a webhook verification key.
- key_id
-
The key ID from the Plaid-Verification header.
Returns
Returns a WebhookVerificationKeyGetResponse object.
Source: show
# File lib/plaid/products/webhooks.rb, line 9 def get_verification_key(key_id) post_with_auth 'webhook_verification_key/get', WebhookVerificationKeyGetResponse, key_id: key_id end