How to set an in-person signing action in a signature request
To get a signature during an in-person session, pass the email and name of your org user who will be present in the in-person session in recipient_name and recipient_email parameter and pass the name of the signer in "in_person_name" and set action_type as INPERSONSIGN.
Copied{
"requests": {
"actions": [
{
"recipient_name": "Host Name",
"recipient_email": "Host email",
"in_person_name": "in-person signer name",
"in_person_email": "", //optional can be passed if email is known
"action_type": "INPERSONSIGN",
}
]
}
}