如何将自定义标签附加到 Docusign 信封?
How can I attach a Custom Tab to a Docusign Envelope?
查看 Docusign API 文档,我无法弄清楚如何将自定义标签附加到信封。使用传统的选项卡有时会禁止我设置文本。因此,需要自定义选项卡。使用 CustomTabsAPI 我可以创建一个自定义选项卡。剩下的就是将自定义选项卡附加到信封上的功能。
You can add custom tabs to envelopes and templates by setting the
customTabId property when creating an envelope, template recipient, or
when adding a new tab for an existing recipient.
我正在使用 EnvelopeDefinition
创建我的信封。我期待的是:
envelope_definition = EnvelopeDefinition(
custom_fields=custom_fields,
documents=documents,
recipients=recipients,
status='created',
event_notification=event_notification,
email_settings=email_settings,
custom_tabs=custom_tabs # <------ SOMETHING LIKE THIS
)
有什么建议吗?如何添加自定义选项卡的示例?文档? TIA
编辑:这是我目前使用的 textTab
signer = Signer(**args)
title_text = Text(
anchor_string=anchor_string,
anchor_units="pixels", anchor_y_offset="10",
anchor_x_offset="0", width="180", value=initial_value
)
signer.tabs = Tabs(text_tabs=[title_text])
example img of text not editable
example img of custom tab this can be edited
如果我可以编辑 TextTab,那就太好了。
解决方案总结:
title
选项卡是系统选项卡,因此无法设置该值。
相反,OP 将使用 text
选项卡,设置其值,并将属性 locked
设置为 false
以使签名者能够更新它。
查看 Docusign API 文档,我无法弄清楚如何将自定义标签附加到信封。使用传统的选项卡有时会禁止我设置文本。因此,需要自定义选项卡。使用 CustomTabsAPI 我可以创建一个自定义选项卡。剩下的就是将自定义选项卡附加到信封上的功能。
You can add custom tabs to envelopes and templates by setting the customTabId property when creating an envelope, template recipient, or when adding a new tab for an existing recipient.
我正在使用 EnvelopeDefinition
创建我的信封。我期待的是:
envelope_definition = EnvelopeDefinition(
custom_fields=custom_fields,
documents=documents,
recipients=recipients,
status='created',
event_notification=event_notification,
email_settings=email_settings,
custom_tabs=custom_tabs # <------ SOMETHING LIKE THIS
)
有什么建议吗?如何添加自定义选项卡的示例?文档? TIA
编辑:这是我目前使用的 textTab
signer = Signer(**args)
title_text = Text(
anchor_string=anchor_string,
anchor_units="pixels", anchor_y_offset="10",
anchor_x_offset="0", width="180", value=initial_value
)
signer.tabs = Tabs(text_tabs=[title_text])
example img of text not editable
example img of custom tab this can be edited
如果我可以编辑 TextTab,那就太好了。
解决方案总结:
title
选项卡是系统选项卡,因此无法设置该值。
相反,OP 将使用 text
选项卡,设置其值,并将属性 locked
设置为 false
以使签名者能够更新它。