POST
/
momo
/
resolve
Resolve a Till, Paybill number, or Mobile Money operator
curl --request POST \
  --url https://api.stablepay.ai/momo/resolve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "paybill",
  "accountNumber": "<string>",
  "phoneNumber": "+254727614739"
}'
{
  "valid": true,
  "type": "paybill",
  "accountName": "<string>",
  "accountNumber": "<string>",
  "phoneNumber": "<string>",
  "operators": [
    "safaricom"
  ],
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer scheme. Format: Bearer {STA_xxxx}

Body

application/json

Resolve an M-Pesa Till/Paybill number or Mobile Money phone operator

The body is of type object.

Response

Validation request successfully processed.

The response is of type object.