Confirm the name of a Mobile Money or Bank Account holder before initiating a transfer.
POST https://api.moolre.com/open/transact/validate
To test in sandbox, use https://sandbox.moolre.com/open/transact/validate instead.
| Header Name | Type | Required | Description |
|---|---|---|---|
X-API-USER | string | Yes | Your Moolre username. |
X-API-KEY | string | Yes | Your API Key (accepts both Public Key and Private Key). (Not required in Sandbox) |
| Parameter | Type | Required | Description |
|---|---|---|---|
type | integer | Yes | Must be 1. |
receiver | string | Yes | Phone number or bank account number. |
channel | string | Yes | 1=MTN, 6=Telecel, 7=AT, 2=Instant Bank Transfer. |
sublistid | string | No | Bank ID if channel is Bank Transfer. |
currency | string | Yes | Currency code (e.g., GHS). |
accountnumber | string | Yes | Your Moolre Account Number. |
Name validated successfully.
{
"status": 1,
"code": "AVD01",
"message": "Successful",
"data": "BRIGHT BUAME",
"go": null
}
The phone number or account was not found.
{
"status": 0,
"code": "AVD02",
"message": "Phone No. not found",
"data": "Phone No. not found",
"go": null
}