我尝试更改 adobe esign 在文档末尾添加的默认签名的位置。我试过使用
" 'contentType' => 'SIGNATURE_BLOCK' "
在 api 的字段属性中: api/rest/v6/agreements/{agreementId}/formFields 。但它不适用于“SIGNATURE_BLOCK” contentType 并且字段未在所需位置的 pdf 中显示。
因此,添加具有任何值“SIGNATURE_BLOCK”或“SIGNATURE”或“SIGNER_NAME”或“SIGNER_FIRST_NAME”或“SIGNER_LAST_NAME”或“SIGNER_INITIALS”或“SIGNER_EMAIL”的“contentType”参数不会向文档添加字段。
这是来自 adobe https://helpx.adobe.com/sign/kb/formfields-option-is-not-available-in-v6-of-rest-api-adobe-sign.html的链接,我已用作参考.
请帮助,如何正确使用api。
Here is the PHP array i have used :
['fields' =>
[
[
'locations' =>
[
[
'pageNumber' => 1,
'top' => 600,
'left' => 300,
'width' => 111,
'height' => 30,
]
],
'name' => 'test_es_:signer:signature',
'inputType' => 'SIGNATURE',
'recipientIndex' => 1,
'alignment' => 'RIGHT',
"required" => 1,
'contentType' => 'SIGNATURE_BLOCK'
],
]
]
谢谢