docusignapi - DocuSign - Word/Pdf/Html file send -


i using .net integrate docusign have requirement take pdf/word/html file , send via docusign before add few fields document. believe adding fields should possibly have read unsure how send pdf / word / html file directly? please note, not using template stored in docusign , filling in fields.

other question, if use template, see can attach other documents can merge template doc , doc uploading 1 or send 2 different files?

thanks,

alex

yes want send signature request on document (as opposed on template) easy do, need make multipart/form-data post request. have gone through docusign developer center , subsequently api tools page? 1 of tools api walkthroughs, shows 9 of common api use cases, , you'll see 4th 1 (the middle left square) titled "request signature on document".

that code walkthrough shows in 6 different languages how send signature request on local document- not sure stack you're using since didn't tag language. can copy source you're stack , fill in variables (or mimic code if language not listed) , request signature on document.

note 1: these samples place 1 signature tab @ location (100, 100) show how use absolute positioning. can alternatively use relative (or anchor) positioning, see dev center more info.

note 2: of code samples send pdf , therefore use content-type of application/pdf. have change various document types.

to answer question on if can merge template documents local document(s) , send in 1 single request- yes, can use composite templates accomplish that.


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -