Signer Auth w/Q&A
Monday, June 15, 2020 at 08:42amHey all -
I'm having trouble finding some examples for validating signers using the Q&A features. I recall seeing some examples in the docs or forums in the past but can't find them now. Any help is appreciated.
Reply to: Signer Auth w/Q&A
Monday, June 15, 2020 at 10:54amHi Rees,
The Signer Authentication is documented in this guide.
And an example could look like below, where the predefined Q&A are specified at "roles" > "signers" > "auth" node, if you have multiple Q&A, add the pairs to the "challenges" array:
{
"roles": [
{
"type": "SIGNER",
"index": 0,
"signers": [
{
"auth": {
"scheme": "CHALLENGE",
"challenges": [
{
"answer": "golf",
"question": "What's your favorite sport?",
"maskInput": false
}
]
},
"email": "[email protected]",
"firstName": "Patty",
"lastName": "Galant"
}
],
"name": "Signer1"
}
],
"status": "DRAFT",
"type": "PACKAGE",
"name": "Signer Authentication Example"
}
Duo