我想向我的DocuSign文檔添加郵編列表,但它似乎是停止顯示任何選項卡。唯一的其他選項卡是GitHub上PHP SDK中顯示的setSignHereTabs選項卡。自定義選項卡不工作
// add postcode tab
$postcodeTab = new DocuSign\eSign\Model\Text();
$postcodeTab->setDocumentId = ("1");
$postcodeTab->setRecipientId = ("1");
$postcodeTab->setPageNumber = ("1");
$postcodeTab->setName = ("postcodes");
$postcodeTab->setTabLabel = ("ReadOnlyDataField");
$postcodeTab->setValue = ($postcodes);
$postcodeTab->setLocked = ("true");
$postcodeTab->setXPosition = ("100");
$postcodeTab->setYPosition = ("100");
// add the postcode tab to the envelope's list of tabs
$tabs = new DocuSign\eSign\Model\Tabs();
$tabs->setTextTabs(array($postcodeTab));
我通過鏈接使用REST API文檔和「數據域」部分下作爲指導:
https://www.docusign.com/developer-center/explore/features/stick-etabs
沒有錯誤顯示在Apache的錯誤日誌。任何幫助,將不勝感激。
GitHub的鏈接
https://github.com/docusign/docusign-php-client
REST API文檔
https://docs.docusign.com/esign/
這可能是他們的支持團隊回答的問題。另外,爲什麼你用多餘的括號'('和')'來包圍你的字符串? – FrankerZ
我只是保持在這裏顯示的內容: https://github.com/docusign/docusign-php-client/blob/master/test/UnitTests.php – Cozmoz
@Cozmoz .. [DocuSign PHP客戶端](https://github.com/docusign/docusign-php-client)使用Rest Api。 –