Cartalyst\Stripe\Api\BankAccounts::verify PHP Method

verify() public method

Verifies the given bank account.
public verify ( string $customerId, string $bankAccountId, array $amounts, string $verificationMethod = null ) : array
$customerId string
$bankAccountId string
$amounts array
$verificationMethod string
return array
    public function verify($customerId, $bankAccountId, array $amounts, $verificationMethod = null)
    {
        return $this->_post("customers/{$customerId}/sources/{$bankAccountId}/verify", ['amounts' => $amounts, 'verification_method' => $verificationMethod]);
    }
BankAccounts