Docusign - 预填充模板字段
Docusign - Prepopulate Template Fields
所以我现在正在与 DocuSign API 作斗争。
我创建了一个带有单个电子标签的模板,名为 "test"
我想发送一个 JSON 请求来触发签名响应。此请求的一部分将包含特定于客户端的预设值。
到目前为止,除了我的请求结构没有正确地将值映射到字段之外,我可以使一切正常工作(将电子邮件发送到正确的地址等)。
要求:
request = json.dumps({'accountId': account_id,
'status': 'sent',
'emailSubject': 'You have a document you need to sign',
'emailBlurb': 'This is a blurb',
'templateId': 'xxxxxxxxxxxxxxxxxxxxxxxx',
'customFields': {
'textCustomFields': [{
'name': 'address',
'required': 'True',
'show': 'True',
'value': 'This is an address'
}],
},
'templateRoles': [{
'email': 'my_email@emailsrus.com',
'name': 'Jamie Strauss',
'roleName': 'Signer1',
'recipientId': '1',
"tabs": {
"textTabs": [{
"tabLabel": "test",
"value": "hello123",
}]
},
}],
})
电子邮件通过了,但是当我导航到 docusign 端点时,呈现的字段是空白的。
我尝试了 "tab" 设置的可变实现,但没有成功。谁能看出我做错了什么?
干杯
您似乎为收件人 "Steven Johns" 创建了 "test" 文本选项卡,但您的 API 调用指的是 "Signer1" 角色。
检查选项卡是否与 Signer1 关联 role/recipient。
所以我现在正在与 DocuSign API 作斗争。 我创建了一个带有单个电子标签的模板,名为 "test"
我想发送一个 JSON 请求来触发签名响应。此请求的一部分将包含特定于客户端的预设值。
到目前为止,除了我的请求结构没有正确地将值映射到字段之外,我可以使一切正常工作(将电子邮件发送到正确的地址等)。
要求:
request = json.dumps({'accountId': account_id,
'status': 'sent',
'emailSubject': 'You have a document you need to sign',
'emailBlurb': 'This is a blurb',
'templateId': 'xxxxxxxxxxxxxxxxxxxxxxxx',
'customFields': {
'textCustomFields': [{
'name': 'address',
'required': 'True',
'show': 'True',
'value': 'This is an address'
}],
},
'templateRoles': [{
'email': 'my_email@emailsrus.com',
'name': 'Jamie Strauss',
'roleName': 'Signer1',
'recipientId': '1',
"tabs": {
"textTabs": [{
"tabLabel": "test",
"value": "hello123",
}]
},
}],
})
电子邮件通过了,但是当我导航到 docusign 端点时,呈现的字段是空白的。
我尝试了 "tab" 设置的可变实现,但没有成功。谁能看出我做错了什么?
干杯
您似乎为收件人 "Steven Johns" 创建了 "test" 文本选项卡,但您的 API 调用指的是 "Signer1" 角色。
检查选项卡是否与 Signer1 关联 role/recipient。