• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Custom positioning of a signature box

New Here ,
Oct 18, 2017 Oct 18, 2017

Copy link to clipboard

Copied

I have a PDF & in my PDF I already know where I want to place the signature box.

I'm using this to create an agreement using the POST rest endpoint (v5)

{

    "documentCreationInfo": {

        "fileInfos": [

            {

                "documentURL": {

                    "mimeType": "application/pdf",

                    "name": "....",

                    "url": "http://example.com/example.pdf"

                }

            }

        ],

        "name": "Instructions",

        "recipientSetInfos": [

            {

                "recipientSetMemberInfos": [

                    {

                        "email": "someuser@gmail.com",

                        "fax": ""

                    }

                ],

                "recipientSetRole": "SIGNER",

                "recipientSetName": "Bob"

            }

        ],

        "signatureType": "ESIGN",

        "signatureFlow": "SENDER_SIGNATURE_NOT_REQUIRED",

        "formFields": [{

              "locations": [

                {

                  "height": 60,

                  "left": 60,

                  "pageNumber": 1,

                  "top": 90,

                  "width": 100

                }

              ],

              "name": "signature_1",

              "required": true,

              "contentType": "SIGNATURE_BLOCK",

              "displayLabel": "Signature Bob",

              "inputType": "SIGNATURE"

        }]

    }

}

However Adobe Sign/Echosign isn't acknowledging formFields and I just see the standard signature box when I get the signing URL. What can I do to control the position of the Signature boxes, so that they are not at the end of the pagr but they are placed at the corresponding top and left I assign to them.

Views

694

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Oct 26, 2017 Oct 26, 2017

Copy link to clipboard

Copied

LATEST

Here is the JSON for a custom signature form field location that works successfully with one of my forms:

{

        "name": "echosign_signature1",

        "inputType": "SIGNATURE",

        "contentType": "SIGNATURE",

        "fontSize": "8",

        "required": "true",

        "readOnly": "false",

        "defaultValue": "",

        "recipientIndex": "1",

        "locations": [{

            "pageNumber": "1",

            "top" :"485",

            "left": "136",

            "width": "175",

            "height": "18"

        }]

    }

While SIGNATURE_BLOCK is a valid value for contentType, I typically use SIGNATURE. Have you had issues with other field types, or just the signature boxes?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines