简体   繁体   中英

Docusign REST API - PHP and add TABS

I need to add more Tabs with the REST API Docusign. I use the example they give here : 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?

$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. Other tabs you can use are FullName, LastName, Date, Text, Number, FormulaTab, CheckBox, RadioGroup and Radio. All the same as this example just a different object.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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