Can i change the sender name in an of email sent by onespan for requesting signature
Monday, April 24, 2023 at 01:31amHello
How can i change this name (Bim kum) in an of email sent by onespan for requesting signature by using onespan API while sending emails for signing.
Bim kum has added you as a Signer to ".....
Regards
Bimal
Reply to: Can i change the sender name in an of email sent by onespan for requesting signature
Friday, April 28, 2023 at 08:31amHi Bimal,
Thanks for your post! This name refers to the sender of the transaction. If you are creating the transaction via RESTful API, add a "sender" node to your package JSON:
{
"roles": [
{
"id": "Signer1",
"signers": [
{
"email": "[email protected]",
"firstName": "John",
"lastName": "Smith"
}
]
}
],
"documents": [
{
"approvals": [
{
"role": "Signer1",
"fields": [
{
"page": 0,
"top": 100,
"subtype": "FULLNAME",
"height": 50,
"left": 100,
"width": 200,
"type": "SIGNATURE"
}
]
}
],
"name": "Test Document"
}
],
"name": "Example Package",
"language": "en",
"description": "New Package",
"autocomplete": true,
"status": "SENT",
"sender": {
"firstName": "Mary",
"lastName": "Doe"
}
}
Duo