Workflow - Usage Examples

Launch QoreID services with Workflow

To launch a workflow, you'll need a workflowId & workflow clientId. You can create a workflow, go to your QoreID dashboard.

val qoreIDParams = QoreIDParams()
   		  .clientId(workflowClientId)
        .inputData(InputData)
   		  .workflow(workflowId)

qoreIDButton
  	.params(qoreIDParams)
  	.registerForResult(activityResultLauncher)
QoreIDParams qoreIDParams = new QoreIDParams.Builder()
             .clientId(clientId)
             .inputData(
                 applicantData, 
                 addressData
             )
             .forService("verifind")

qoreIdButton
  .params(qoreIDParams)
  .registerForResult(activityResultLauncher)

🚧

If you have Verifind as part of your workflow. Please See Verifind Permissions to include in your Manifest.

See VeriFindfor more


What’s Next