Skip to main content
POST
/
quote
/
validate-kes-identifier
curl --request POST \
  --url https://staging.api.mavapay.co/api/v1/quote/validate-kes-identifier \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "identifier": "247247",
  "identifierType": "PayBill"
}
'
{
  "status": "ok",
  "data": {
    "organization_name": "Equity Paybill Account"
  }
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
identifier
string
required

The paybill or till number to validate

Example:

"247247"

identifierType
enum<string>
required

The type of identifier to validate

Available options:
PayBill,
Till
Example:

"PayBill"

Response

Validation successful

status
string
Example:

"ok"

data
object