简体   繁体   English

创建签名人收件人时,此处未在文档上添加选项卡

[英]SignHere tabs not adding on document while creating signer recipient

I am creating Signer Recipient from REST C# SDK using EnvelopesApi " CreateRecipient " method. 我正在使用EnvelopesApiCreateRecipient ”方法从REST C#SDK创建“签署者收件人”。 I am also putting SignHere tabs for the respective recipient on the basis of anchor text, but the tabs are not displayed in the signing email. 我还将基于锚文本为各个收件人放置SignHere选项卡,但这些选项卡未显示在签名电子邮件中。 Am I missing anything? 我有什么想念的吗?

If you want to add a recipient and its tabs then you should call below API endpoint on envelope: 如果要添加收件人及其选项卡,则应在信封的API端点下方调用:

PUT /v2/accounts/{accountId}/envelopes/{envelopeId}?advanced_update=true

Req body: 要求正文:

{
    "recipients": {
      "signers": [
                     {
                        "email": "johndoe@email.com",
                        "name": "John Doe",
                        "recipientId": "1",
                        "roleName": "Signer",
                        "routingOrder": "1",
                        "tabs": {
                            "signHereTabs": [{
                                "anchorString": "spsign1"
                            }]
                        }
                    }
        ]
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Docusign signhere 选项卡未出现在用于签名的文档上 - Docusign signhere tabs not appearing on the document for signing docusign-使用API​​向文档中添加标签:仅在此处添加signhere标签,而忽略所有其他标签 - docusign - adding tabs to the document using API: It only adds signhere tab and ignores all other 调整 Docusign 的标志此处选项卡的大小 - Resize the signHere tabs of Docusign 在第一个签名者指定下一个收件人的地方创建信封 - Creating envelopes where first signer specifies next recipient(s) Signhere选项卡的绝对坐标定位 - Absolute Coordinate positioning of Signhere Tabs 在添加选项卡时,DocuSign REST API创建非数字的RecipientId会导致无效的收件人ID错误 - DocuSign REST API Creating a Non-Numeric RecipientId Causes Invalid Recipient ID Error When Adding Tabs 添加辅助收件人以签署文档 - Adding a secondary recipient to sign a document 将现有的收件人选项卡添加到新文档 - Add existing recipient tabs to new document Docusign SDK - 为什么在创建 SignHere 标签时会忽略 document_id? - Docusign SDK - Why document_id are ignored when creating a SignHere tag? 如果在创建信封之前未提供收件人信息(签名者),是否无法使用自动锚标签? - Is it impossible to use the Automated Anchor Tags if recipient info (signer) are not provided before creating envelope?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM