我尝试更改由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'
],
]
]
谢谢