Name |
Type |
Description |
Notes |
email |
String |
Email with which the user was created |
[optional] |
identity_access_token |
String |
Access token in the shape of a JsonWebToken used as a Bearer token when submitting identity data |
[optional] |
required_steps |
Array<ProjectSettingsVerificationSteps> |
List of the steps through which the user must go through to complete their verification |
[optional] |
require 'passbase'
instance = Passbase::User.new(
email: jessie@example.com,
identity_access_token: eyJhbGciOiJIUzI1NiIsI...,
required_steps: [{"step":"email","resource_types":["EMAIL"]},{"step":"liveness_check","resource_types":["FACE_VIDEO"]},{"step":"country","resource_types":["de","us","vn","zn"]},{"step":"identity_document_check","resource_types":["PASSPORT","DRIVERS_LICENSE"]},{"step":"insurance_card_scan","resource_types":["HEALTH_INSURANCE_CARD"]}]
)