Forward data to your workflow
For integrated workflows, you can forward custom data when initialising your workflow. This option is available when workflow is initialized on your side via /omni/start endpoint.
Custom Fields
Start endpoint can receive a key-value map in "customFields" parameter. The list of keys needs to be defined in Configuration -> General -> Custom Fields
Custom fields will be displayed on Single session page.
Two most common usages:
Data already collected about user that needs to be crosschecked
You might already have user first and last name in your system and you want to make sure that user who is doing verification matches the one you have in your system. Setting up a crosscheck between data read from ID user presented during workflow journey and what you have passed on start will give you the information wether user is who you expect them to be.
- Add crosscheck node to your workflow. Crosscheck is in the Process section
- Configure your crosscheck but adding new comparison and selecting sources and fields that should be compared. One source should be CUSTOM_FIELDS and the other is usually ID. You can add more than one comparison in the crosscheck node. When naming a comparison its name should not contain following special characters: `!, @, #, $, %, ^, &, *, (, )
-
Add a condition that would examine crosscheck result
Passing internal identifiers, tags, markers
These can be used to identify different sessions or connect with internal systems. For connection between Incode session and your session it is recommended to use externalCustomerId parameter. This parameter is a separate parameter in start call.
External Customer Id
- For connection between Incode session and your session it is recommended to use externalCustomerId parameter. This is an optional string parameter in
omni/start
call.
Configuration id
- This is a workflow id that user will go through. Workflow id can be found on Dashboard. Click ... for a workflow and Copy ID
Redirection Url
Override redirection url from workflow settings in case you want to have granular redirection per user or any other group that requires different redirection url. Format of url must be: https://your.url
Updated 3 months ago