Appearance
Post Account verification
https://api.magmasend.com/v1/account/verificationThe Account Validation API allows users to verify bank account details by providing essential information such as the bank name, sort code, account number, and currency. This ensures that the account exists and is valid for transactions.
HEADERS
| Authorization | Bearer TOKEN |
|---|
Body
json
{
"currency": "XOF",
"country": "SN",
"operator": "ORANGE_SN",
"delivery_method": "MobileMoney",
"phone_number": "+221700000000"
}Response
valid
json
{
"code": "00",
"status": "OK",
"message": "Account is valid",
"name": "Confidential"
}not valid
json
{
"code": "-1",
"status": "ERROR",
"message": "Account is not valid",
"name": null
}