2016-02-29 46 views

回答

0

它就像任何其他DocuSign選項卡一樣,只需要正確引用名稱並設置其參數即可。以下是一個可以發送一個簽名標籤和一個簽名者附件標籤的示例:

POST v2/accounts/{accountId}/envelopes 

{ 
    "emailSubject": "Please sign this document", 
    "documents": [ 
    { 
     "name": "test.pdf", 
     "documentId": "1" 
    } 
    ], 
    "recipients": { 
    "signers": [ 
     { 
     "tabs": { 
      "signHereTabs": [ 
      { 
       "pageNumber": "1", 
       "documentId": "1", 
       "yPosition": "100", 
       "xPosition": "100", 
       "tabLabel": "Signature Tab", 
      } 
      ], 
      "signerAttachmentTabs": [ 
      { 
       "pageNumber": "1", 
       "documentId": "1", 
       "yPosition": "100", 
       "xPosition": "200", 
       "required": "true", 
       "tabLabel": "Signer Attachment Tab", 
      } 
      ] 
     }, 
     "routingOrder": "1", 
     "recipientId": "1", 
     "name": "Jon Dough", 
     "email": "[email protected]" 
     } 
    ] 
    }, 
    "status": "sent" 
} 
相關問題