Understanding Multi-Signal Requests
To understand whether a private_data object is correct, first consider the document_type. Then make sure the required signal is included. Then evaluate the remaining signals.
Consider the following private_data object.
{
"private_data": {
"document_type": "na_dl",
"signals": [
"idcheck",
"ocr_scan",
"ocr_match",
"selfie",
"email_validation"
]
}
}- There is one document type,
na_dl. You can only include one document type per request. - The required signal for that document type is included,
idcheck. - Since
ocr_matchis requested,ocr_scanis also requested. selfieandemail_validationare both valid signals forna_dl.
The following illustration shows this request in the API explorer.
You can understand if a private_data object is correct by:
- Requesting only one document type
- Including the required signal
- Considering each remaining member of the
signalsarray
Updated 5 months ago
