Skip to main content

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.

KeyTypeMandatoryDescription
firstNamestringyesFirst name of the subject.
lastNamestringyesLast name of the subject.
emailstring($email)yesPrimary email address of the subject.
phoneNumberstringyesPrimary phone number of the subject in E.164 format.
dateOfBirthLocalDateyesDate of birth in YYYY-MM-DD format only.
addressObjectyes
address.line1stringyes
address.line2stringno
address.citystringyesCity of residence as it appears on the ID.
address.postalCodestringyesPostal or zip code.
address.subdivisionstringnoCity subdivision of residence as it appears on the ID.
address.countrystringyesCountry 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"
}
}