netz.bimal

Can i change the sender name in an of email sent by onespan for requesting signature

0 votes

Hello

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

 


Attachments

Reply to: Can i change the sender name in an of email sent by onespan for requesting signature

0 votes

Hi 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

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off