We recommend reading the main README first to understand the requirements for using the library and how to integrate it into your application. This guide assumes you've read that.
This describes how to create a transfer beneficiary.
Response flwResponse = new Beneficiaries()
.runCreateBeneficiary(new BeneficiaryRequest("0690000034",
"044",
"Ade Bond",
Optional.empty(),
Optional.empty()));This describes how to list all transfer beneficiaries.
ListResponse flwResponse = new Beneficiaries()
.runGetAllBeneficiaries(Optional.page);This describes how to fetch a transfer beneficiary.
Response flwResponse = new Beneficiaries()
.runGetBeneficiary(Optional.id);This describes how to delete a transfer beneficiary.
Response flwResponse = new Beneficiaries()
.runDeleteBeneficiary(Optional.id);