v1

latestOpenAPI 3.0.02026-07-2468247202.3 KB
KYC > Quick Start

Get user data

Endpoint used to get user data from verification session

get/verify/get_user_data_from_request/{verification_session_id}

Path parameters

verification_session_idstring required

Verification session id

Response

Successful operation

first_namestring

The person's first name

middle_namestring

The person's middle name

last_namestring

The person's last name

date_of_birthstring

The person's date of birth in YYYY-MM-DD format

phone_numberstring

The person's phone number. Prefer phone number in E.164 format

email_addressstring

The person's email address

ip_addressstring

The person's ip address

selfiestring

A S3 url of the person's selfie.

smile_selfiestring
selfie_videostring

A S3 url of the person's selfie video.

questions_responseobject

Questions responded by the user

Example response

{
  "first_name": "John",
  "last_name": "Smith",
  "date_of_birth": "1984-01-21",
  "phone_number": "+13334445555",
  "email_address": "johnsmith@aiprise.com",
  "address": {
    "address_street_1": "222 Palm Street",
    "address_city": "Santa Monica",
    "address_state": "CA",
    "address_zip_code": "93251",
    "address_country": "US"
  },
  "identity": {
    "identity_country_code": "US",
    "identity_document_front": "S3_URL",
    "identity_document_back": "S3_URL"
  },
  "selfie": "S3_URL",
  "selfie_video": "S3_URL"
}