...
- Call
registerVerification
with the person's basic details. Some background sources may pass, but the person requires further verification. - Call
getSources
to fetch a list of sources that will help the person become verified. The person selects "Medicare card" as the next data source they wish to attempt. - Call
getFields
for the "Medicare card" data source (source ID "medicare"), and present the person with input fields for the required data. - Call
setFields
for the "Medicare card" data source with the data supplied by the person. The result indicates the person requires further verification, and includes a list of sources that will help the person complete their verification. The person selects "NSW drivers' licence" as the next data source they wish to attempt. - Call
getFields
for the "NSW driver's licence" data source (source IDnswrego
), and present the person with input fields for the required data. - Call
setFields
for the "NSW driver's licence" data source with the data supplied by the person. The result indicates the person has completed their verification, so the process ends here.
...
- Call
registerVerification
with the person's basic details. Some background sources may pass, but the person requires further verification. - Call
setFields
for the "Medicare card" data source with the data supplied by the person. The result indicates the person requires further verification, and includes a list of sources that will help the person complete their verification. The person selects "NSW drivers' licence" as the next data source they wish to attempt. - Call
setFields
for the "NSW driver's licence" data source with the data supplied by the person. The result indicates the person has completed their verification, so the process ends here.
Complete example with a combination source
The sequence of calls and events below illustrate a full scenario where a combination source is used. The scenario assumes that greenID scan has been integrated into a customer's verification journey, and is invoked at the appropriate point in the customer's workflow.
- The person downloads and installs the customer's application, which includes the greenID Mobile SDK.
- The person starts the onboarding workflow.
- The person selects the ID document they wish to photograph.
- The person captures an image of the front and back of their ID document. The images are uploaded to greenID and checked for authenticity, integrity and digital tampering.
- The person captures a selfie. The selfie is uploaded to greenID and compared against the image extracted from the ID document.
- The details that were automatically extracted from the ID document are presented to the person for confirmation. The person corrects any errors and submits the details.
- The master record is created at greenID and watchlists and background sources (if configured) are checked. The details from the ID document are also checked. The level of verification achieved is sufficient to satisfy the rule the customer has configured on their greenID account.
- The greenID Mobile SDK hands off to the controlling application.
- The customer's mobile application sends the details to the customer's back-end application, which uses the
verificationToken
(received from the greenID Mobile SDK at handoff) to query the results of the verification process by callinggetVerificationResult
. - The customer's back-end application communicates with their native mobile application to determine the next step in the workflow for the person, based on the results of the verification process.
Complete example with a combination source (returning user)
- Call
registerVerification
with the person's basic details. Some background sources may pass, but the person requires further verification. - The customer's back-end application stores the
verificationId
and associated it with their record for the person. - The customer's back-end application generates some form of token or code and associates it with the
verificationId
. - Direct the person to resume the verification process using the customer's native mobile app.
- The person resumes the verification process using the customer's native mobile app by entering the token or code generated in step 3.
- The native mobile app sends the token or code to the back-end application, which finds the associated
verificationId
and uses it to call getGreenIdWebVerificationToken (TODO - add link). TheverificationToken
is passed back to the native mobile app. - The native mobile app initialises the greenID Mobile SDK in "returning user" mode and supplies the greenIdWebV
erificationToken
. - The greenID Mobile SDK guides the person through the rest of the verification process. The person achieves a level of verification sufficient to satisfy the rule the customer configured on their greenID account.
- The greenID Mobile SDK hands off to the controlling application.
- The customer's mobile application sends the details to the customer's back-end application, which uses the
verificationToken
to query the results of the verification process by callinggetVerificationResult
. - The customer's back-end application communicates with their native mobile application to determine the next step in the workflow for the person, based on the results of the verification process.
Example with GBG Trust: Alert Only
- Call
registerVerification
with the person's basic details. Any alerts raised will be returned in the verificationResult section of the response. - Call getVerificationResult to query the result.