Upload Support Data
Supporting data are values that are uploaded in addition to other credential types to support fraud detection and improve identity verification.
Examples of Supporting Data
For example, uploading the following:
- End user name
- Phone number
- Email address These values are typically not available from ID data alone and can be used to check against lists of known or suspected fraudulent actors.
Types of Supporting Data
Supporting data is typically either:
- Entered by the end-user as form data prior to initiating the Jumio customer journey.
- Retrieved from data stored previously.
note
Use the Uploading Prepared Data guide to submit supporting data via the PREPARED_DATA URL.”
Once the supporting data is uploaded, Jumio acquires any remaining credentials and executes the verification workflow.

Supporting Data Values
The following values can be uploaded as Prepared Data.
| Key | Type | Mandatory | Description |
|---|---|---|---|
firstName | string | yes | First name of the subject. |
lastName | string | yes | Last name of the subject. |
email | string($email) | yes | Primary email address of the subject. |
phoneNumber | string | yes | Primary phone number of the subject in E.164 format. |
dateOfBirth | LocalDate | yes | Date of birth in YYYY-MM-DD format only. |
address | Object | yes | |
address.line1 | string | yes | |
address.line2 | string | no | |
address.city | string | yes | City of residence as it appears on the ID. |
address.postalCode | string | yes | Postal or zip code. |
address.subdivision | string | no | City subdivision of residence as it appears on the ID. |
address.country | string | yes | Country in ISO-3166-1 Alpha-3 Code or ISO-3166-1 Alpha-2 Code format. |
Example Prepared Data Body
{
"firstName": "John",
"lastName": "Smith",
"phoneNumber": "+15031234567",
"email": "email@gmail.com",
"dateOfBirth": "1972-11-16",
"address": {
"line1": "12345 SW Address Ln",
"postalCode": "12345",
"city": "Any Town",
"subdivision": "OR",
"country": "USA"
}
}