Bank Account
Register account
POST
/
bankaccount
Copy
curl --request POST \
--url https://staging.api.mavapay.co/api/v1/bankaccount \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"bankName": "KUDA MICROFINANCE BANK",
"bankCode": "090267",
"bankAccountNumber": "0123456789",
"bankAccountName": "Satoshi Nakamoto",
"currency": "NGN",
"walletId": "d1614a76-9c7f-4111-98a7-43199f307e5b-123456789"
}'
Copy
{
"status": "success",
"data": {
"bankName": "KUDA MICROFINANCE BANK",
"bankCode": "090267",
"bankAccountNumber": "0123456789",
"bankAccountName": "Satoshi Nakamoto",
"currency": "NGN",
"walletId": "d1614a76-9c7f-4111-98a7-43199f307e5b-123456789"
}
}
Authorizations
Body
application/json
Response
200
application/json
Bank account response
The response is of type object
.
Copy
curl --request POST \
--url https://staging.api.mavapay.co/api/v1/bankaccount \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"bankName": "KUDA MICROFINANCE BANK",
"bankCode": "090267",
"bankAccountNumber": "0123456789",
"bankAccountName": "Satoshi Nakamoto",
"currency": "NGN",
"walletId": "d1614a76-9c7f-4111-98a7-43199f307e5b-123456789"
}'
Copy
{
"status": "success",
"data": {
"bankName": "KUDA MICROFINANCE BANK",
"bankCode": "090267",
"bankAccountNumber": "0123456789",
"bankAccountName": "Satoshi Nakamoto",
"currency": "NGN",
"walletId": "d1614a76-9c7f-4111-98a7-43199f307e5b-123456789"
}
}
Assistant
Responses are generated using AI and may contain mistakes.