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. For example, uploading the end user's name, along with a phone number or email address that is typically not available in the data extracted from an ID allows lookups against lists of known fraudulent or suspected actors.

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

Workflows that use supporting data provide a PREPARED_DATA URL for uploading the data. Checkout Uploading Prepared Data.

After the supporting data is uploaded other credentials are acquired and the workflow is executed.

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"
}
}