我正在开发需要使用 DocuSign API (PHP) 的项目。这是我第一次使用 DocuSign,我成功地在 DocuSign 控制台中使用 roleName = signer 制作了模板。在那里,我还制作了自定义文本标签:address
、、和city
,并将它们拖到模板中的所需位置。我想把我的客户(签名者)信息从项目数据库中放出来。state
phone
从我的项目中,我成功地通过 PHP API 与 DocuSign 建立了连接,并收到了 Embedded Singing View URL,它打开了我的模板,用户可以在其中毫无问题地签署文档。
但是......我所有的自定义文本标签都是空的,签名者可以输入它们。我需要用来自数据库的签名者个人数据预先填充它们。我在我的 DocuSign 控制台和我的代码中以及 roleName->tagLabel 关系中三重检查自定义标签标签拼写、大写/小写。我的 PHP 代码如下。
有人可以告诉我我做错了什么吗?
我输了两天。
$data = array(
"accountId" => $accountId,
"emailSubject" => $this->_emailSubject,
"templateId" => $templateId,
"templateRoles" => array(
array(
"email" => $email,
"name" => $recipientName,
"clientUserId" => $clientUserId,
"roleName" => "signer",
"customFields" => array(
"textCustomFields" => array (
array (
"name" => "address",
"value" => "Address from DB",
"show" => "true",
),
array (
"name" => "city",
"value" => "City from DB",
"show" => "true",
),
array (
"name" => "state",
"value" => "State from DB",
"show" => "true",
),
array (
"name" => "phone",
"value" => "Phone from DB",
"show" => "true",
),
),
),
),
),
"status" => "sent"
);