-
Notifications
You must be signed in to change notification settings - Fork 19
Banks
Abraham Olaobaju edited this page Aug 23, 2023
·
2 revisions
This resource describes how to get bank details for all Banks in the specified Country.
This returns all the Banks information in a country.
use Flutterwave\Service\Banks;
$service = new Banks();
$response = $service->getByCountry("NG");
print_r($response);
This describes how to get bank branch details for the specified Bank.
use Flutterwave\Service\Banks;
$service = new Banks();
$response = $service->getBranches("280");
print_r($response);