confusedandamused
confusedandamused

Reputation: 756

C# Docusign - Add signature elements to PDF

I'm fairly new to using Docusign (I have just created an account). I'm curious if the following functionality exists.

I currently have an existing system that generates PDFs, but currently when the PDFs are generated for signing they are sent to an external vendor website/portal to have the docusign elements dealt with.

Each PDF that is generated by the system contains different information,so using templates via Docusign won't work.

I'm attempting to take a flat PDF file, and insert Docusign elements to be completed at a later time. Is this something that Docusign can do, or how should I go about approaching this?

Upvotes: 2

Views: 1602

Answers (1)

Praveen Reddy
Praveen Reddy

Reputation: 7393

Yes it is possible "to take a flat PDF file, and insert Docusign elements to be completed at a later time."

  • How should I go about approaching this?

See the Rest API Recipe here for requesting a Signature using Docusign

This recipe allows you to supply a PDF document(or multiple documents) and supply Tabs based on your requirements.

The Docusign developer Center is a great place to start

C# SDK:

There is also a useful C# SDK to integrate DocuSign into your app.

Upvotes: 1

Related Questions