Class used to call the Webhooks endpoint.

Sections
Namespace
Methods
G
Public
Instance Public methods
get_verification_key(key_id)

Retrieve a webhook verification key.

key_id

The key ID from the Plaid-Verification header.

Returns

Returns a WebhookVerificationKeyGetResponse object.

# 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