简体   繁体   English

Docusign REST API - PHP并添加TABS

[英]Docusign REST API - PHP and add TABS

I need to add more Tabs with the REST API Docusign. 我需要使用REST API Docusign添加更多选项卡。 I use the example they give here : https://developers.docusign.com/esign-rest-api/code-examples/quickstart-request-signature-email 我使用他们在这里给出的例子: https//developers.docusign.com/esign-rest-api/code-examples/quickstart-request-signature-email

But i don't know how to add more TABS like Initials? 但我不知道如何添加更多像首字母缩写的TABS?

$signHere = new DocuSign\eSign\Model\SignHere([ # DocuSign SignHere field/tab
    'document_id' => '1', 'page_number' => '1', 'recipient_id' => '1', 
    'tab_label' => 'SignHereTab', 'x_position' => '195', 'y_position' => '147'
]);

just replace "SignHere" with "InitialHere" and everything else is the same if you want Initials. 只需将“SignHere”替换为“InitialHere”,如果您需要缩写,则其他所有内容都相同。 Other tabs you can use are FullName, LastName, Date, Text, Number, FormulaTab, CheckBox, RadioGroup and Radio. 您可以使用的其他选项卡包括FullName,LastName,Date,Text,Number,FormulaTab,CheckBox,RadioGroup和Radio。 All the same as this example just a different object. 与此示例完全相同只是一个不同的对象。

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM