Plaid.Sandbox.fire_bank_transfer_webhook
You're seeing just the function
fire_bank_transfer_webhook
, go back to Plaid.Sandbox module for more information.
Specs
fire_bank_transfer_webhook(String.t(), Plaid.config()) :: {:ok, Plaid.SimpleResponse.t()} | {:error, Plaid.Error.t()}
Manually fire a Bank Transfer webhook.
Does a POST /sandbox/bank_transfer/fire_webhook
call to manually trigger
a bank transfer webhook.
Params:
webhook
- The URL to which the webhook should be sent.
Examples
Sandbox.fire_bank_transfer_webhook("https://example.com/webhook", client_id: "123", secret: "abc")
{:ok, %Plaid.SimpleResponse{}}