Validate Account

Validate Request service uses POST method to validate the account information based date of birth.

Endpoint

/MFSAfricaCard/v1/validaterequest

Request

{
  "birthDate": "07-JUN-1997",
  "mobilePhoneNumber": "232323322"
}
Field (* required field)TypeDescription
birthDate*stringDate of birth to be validated.
pattern: ^([012]\d|3[01])-(JAN|FEB|MA[RY]|APR|JU[NL]|AUG|SEP|OCT|NOV|DEC)(?:-(\d{4}))?$
mobilePhoneNumber*stringMobile Number associated with ClientId

Response

{
    "errorCode": "0000",
    "errorMessage": "SUCCESS",
    "valid": true
}
FieldTypeDescription
errorCodestringError Code
errorMessagestringError Message
validstringThis field contains the “true” if the information matches an existing customer. “false” otherwise.