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) | Type | Description |
---|---|---|
birthDate* | string | Date 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* | string | Mobile Number associated with ClientId |
Response
{
"errorCode": "0000",
"errorMessage": "SUCCESS",
"valid": true
}
Field | Type | Description |
---|---|---|
errorCode | string | Error Code |
errorMessage | string | Error Message |
valid | string | This field contains the “true” if the information matches an existing customer. “false” otherwise. |
Updated over 1 year ago