OCE012
OCE012
|
|
---|---|
|
When This Is Returned
When the inputted birth date or SSN4 (or both) does not match Verified records.
How to Handle
Prompt the user to try again or confirm that the value they provided is accurate. If they confirm, fall back to a manual signup flow.
Sandbox Validation
tip
We recommend using birth date over SSN4 when possible because:
- Users are typically more comfortable providing their birthday.
- Some users will have an autofill option for birthday from their browser or OS.
- Everyone has a birthday, but not everyone has an SSN.
Example: Birth Date Only
{
...
"message": "BirthDate mismatch."
...
"data": {
"errorCode": "OCE012",
...
}
}
Example: SSN4 Only
{
...
"message": "SSN4 mismatch."
...
"data": {
"errorCode": "OCE012",
...
}
}
Example: Both Birth Date and SSN4
{
...
"message": "BirthDate mismatch and SSN4 mismatch."
...
"data": {
"errorCode": "OCE012",
...
}
}