我們有一個文檔,一個PDF表單,並且我們已將PDF表單中的一個字段標記爲「prescriber_signature」,我們希望放置一個簽名佔位符。Docusign - 從PDF格式創建信封
我們正在發送一個文件來創建信封,這裏是我的請求主體。附件是我們作爲這個多部分請求的一部分發送的文檔。
到目前爲止,我們還沒有成功獲得每個標籤名稱爲「prescriber_signature」的簽名佔位符。你可以看看這個XML並告訴我們需要做什麼嗎?
XML主體:
?xml version="1.0" encoding="UTF-8"?>
<envelopeDefinition xmlns="http://www.docusign.com/restapi">
<emailSubject>DocuSign API - Signature Request on Document</emailSubject>
<status>sent</status>
<documents>
<document>
<documentId>1</documentId>
<name>Samplefileflattenedfalse.pdf</name>
</document>
</documents>
<recipients>
<signers>
<signer>
<recipientId>1</recipientId>
<clientUserId>1234</clientUserId>
<email>[email protected]</email>
<name>POC Prescriber Name</name>
<tabs>
<signHereTabs>
<signHere>
**
<anchorString>prescriber_signature</anchorString>
**
<anchorXOffset>1</anchorXOffset>
<anchorYOffset>0</anchorYOffset>
<anchorIgnoreIfNotPresent>true</anchorIgnoreIfNotPresent>
<anchorUnits>inches</anchorUnits>
</signHere>
</signHereTabs>
</tabs>
</signer>
</signers>
</recipients>
</envelopeDefinition>