当前位置: 首页 > 知识库问答 >
问题:

DocuSign信封选项卡的背景色

上官高逸
2023-03-14

>

  • 首先,用户在UI上创建一个带有文本标签的模板。然后使用EnvelopesAPI#CreateEnvelope(String accountId,EnvelopeDefinition EnvelopeDefinition)调用“post/v2/accounts/{accountId}/Envelopes”创建具有templateId的信封,在请求正文中发送文本选项卡及其值。
  • 在下一步中,我们获取标签、ID和值,并将它们传递到更新请求中:

    2.1.这里,我们使用调用“get/v2/accounts/{accountId}/envelops/{envelopeId}/recipities”的envelopesAPI#Listrecipients(String accountId,String envelopeId,Envelopesapi.ListrecipientsOptions)方法获取信封收件人。

    2.2.在这里,我们调用EnvelopesAPI#ListTabs(String accountId,String envelopeId,String recipientId,EnvelopeSapi.ListTabsOptions选项)调用“get/v2/Accounts/{accountId}/Envelops/{envelopeId}/Recipient/{recipientId}/Tabs”。

    在这里,我们从p.2中得到的选项卡组成请求体,并将一些选项卡的值更新。

    3.1.并执行以下方法EnvelopesAPI#UpdateTabs(String accountId,String envelopeId,String recipientId,Tabs Tabs),该方法转到“put/v2/Accounts/{accountId}/信封/{envelopeId}/收件人/{recipientId}/Tabs”。

    3.2.之后,我们调用调用“put/v2/accounts/{accountId}/信封/{envelopeId}/收件人”的方法envelopesapi#updateRecipients(String accountId,String envelopeId,recipients recipients,Envelections,Envelopesapi.updateRecipientsOptions options)更新收件人。

  • 共有1个答案

    储志业
    2023-03-14
    PUT /v2.1/accounts/{accountId}/envelopes/{envelopeId}/documents/{documentId}/tabs
    
     类似资料: