izzur_rahman

Solution to collect other inputs in PDF during signing ceremony

0 votes
We implemented eSign application to get signature only during signing ceremony.When we create package we added static PDF and this static PDF contains all input information.User need to enter signature only(all other inputs are read only).Now we need to build another application that requires user input before signing document.When we embed eSign signing ceremony URL in iFrame,user needs to enter few other information like Name,age..etc(Editable PDF,not static PDF) and sign the document. Once signing is completed,all fields should be non-editable. Please let us know how to implement this eSign functionality.

Reply to: Solution to collect other inputs in PDF during signing ceremony

0 votes
Hi izzur, I think you mean Text Field, which is editable during Signing Ceremony and will become part of the PDF once signer complete signing. Below is an approval JSON example including one signature and one text field:
{
  "approvals": [
    {
      "role": "signer_id",
      "id": "approval_id",
      "fields": [
        {
          "id": "text_field_id",
          "page": 0,
          "left": 315,
          "width": 165,
          "height": 37,
          "subtype": "TEXTFIELD",
          "top": 263,
          "type": "INPUT",
          "value": null
        },
        {
          "id": "signature_id",
          "page": 0,
          "left": 315,
          "width": 165,
          "height": 37,
          "subtype": "FULLNAME",
          "top": 217,
          "type": "SIGNATURE"
        }
      ]
    }
  ]
}
Hope this could help! 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