Skip to main content
Solved

How to implement Fixed Signature request with "Focused View"

  • October 23, 2024
  • 3 replies
  • 56 views

Forum|alt.badge.img+2

We are trying to use the “Request a signature using focused view” within our .Net Application (C#) and are having trouble using the Fixed Signature placement in the top right of the document. Note: The PDF’s we are having signed cannot be setup with the anchor because they will be invoices coming from multiple customers. 

 

We have it working using the anchor but when we switch to the fixed XPosition and YPosition, the document gets submitted and we can display it but the signature is not placed on the document. Here is the SignHere tab (comment is the working anchor). I tried width and height to see if it happened to be hidden 1 x 1 pixel, but no luck. 

 

 

Are we missing something in order to get the fixed signature placement on the document?

Best answer by Byungjae.Chung

When you work with fixed positioning, you should at least specify the below properties:

xPosition
yPosition
documentId
pageNumber

It seems you forgot to specify the documentId on your signHere tab definition. Please add the documentId and retry it.
 

View Original
Is this content helpful?

3 replies

Forum|alt.badge.img+2
  • Author
  • New Voice
  • 9 replies
  • October 23, 2024

Here is the full view of the envelope creation for reference: 

 


Forum|alt.badge.img+7
  • Docusign Employee
  • 65 replies
  • Answer
  • October 25, 2024

When you work with fixed positioning, you should at least specify the below properties:

xPosition
yPosition
documentId
pageNumber

It seems you forgot to specify the documentId on your signHere tab definition. Please add the documentId and retry it.
 


Forum|alt.badge.img+2
  • Author
  • New Voice
  • 9 replies
  • October 28, 2024

Thank you that was it! I didn’t realize there was another Document ID on the Signer Tab. Here is the updated section of code for reference in case anyone else runs into it: