OCE011
OCE011
|
|
|---|---|
|
|
|
The inputs included in message and data.additionalInputs is a comma separated list of additional information.
Multiple values always indicate an inclusive OR: that is, you can pass one or more of the additional inputs. You do not need to pass all of the additional inputs included in the list!
For example, if inputs is birthDate, ssn4, you can pass either the user's birth date or their SSN4 (or both). We always recommend passing just one first because both are required only very rarely and, if they are both required, you will get another OCE011 error code indicating that the other one is required.
Currently inputs will always be birth date, SSN4, or both — see the examples below.
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.
{
...
"message": "Additional information is required to source data for user: birthDate"
...
"data": {
"errorCode": "OCE011",
"additionalInputs": ["birthDate"],
...
}
}
{
...
"message": "Additional information is required to source data for user: ssn4"
...
"data": {
"errorCode": "OCE011",
"additionalInputs": ["ssn4"],
...
}
}
{
...
"message": "Additional information is required to source data for user: birthDate, ssn4"
...
"data": {
"errorCode": "OCE011",
"additionalInputs": ["birthDate", "ssn4"], // inclusive OR: can pass either or both in next call
...
}
}