For the complete documentation index, see llms.txt. This page is also available as Markdown.

Account Validation

Validates Mobile Money numbers and bank account details, returning the registered account holder's name before a transaction is initiated.

NB Currently, validation of MTN MOMO MSISDN doesn't support name resolution

Endpoint

POST https://api.xtrakit.com/api/v1/payout/account/validate

Headers

Authorization: Bearer API_KEY

Request Body

Parameters
Type
Description

payoutMethodId

string

Required

accountId

string

Required

MOMO Number/Bank Account

Sample Response

{
    "status": "1016",
    "data": {
        "accountId": "+23354xxxxxxxx",
        "accountName": "Kofi Amartey"
    },
    "message": "Account resolution results."
}

Last updated