DocuSign API - 发送模板 Returns 错误 'IN_PERSON_SIGNER_NAME_CANNOT_BE_BLANK'

DocuSign API - Send Template Returns Error 'IN_PERSON_SIGNER_NAME_CANNOT_BE_BLANK'

我正在尝试使用使用亲自签名者的 DocuSign 模板发送信封,但我不断收到此错误:

{
"errorCode": "IN_PERSON_SIGNER_NAME_CANNOT_BE_BLANK",
"message": "For In Person Signer type, the Recipient Signer Name cannot be blank."
}

我只是想使用在模板中设置的模板选项卡,所以我的请求非常简单 - 我只是按如下方式指定模板角色:

    {
    "disableResponsiveDocument" : false,
    "emailBlurb" : "",
    "emailSubject" : "Please DocuSign Company Agreement",
    "recipients" : 
    {
        "carbonCopies" : []
    },
    "status" : "sent",
    "templateId" : "xxxx-xxx-xxx-xxx-xxxxxxx",
    "templateRoles" : 
    [
        {
            "email" : "john@acmetrading.com",
            "name" : "John Simpson",
            "roleName" : "Customer",
            "routingOrder" : "1",
            "tabs" : {}
        }
    ]
}

我过去曾成功地将这种格式用于常规签名者,但无法弄清楚如何为亲自签名者解决此错误。

对于 In Person Signer,您有 2 个人参与 - 签名者和主持人。主持人是收到邮件的人,然后会要求歌手签名(不同的人)。您不必指定签名者电子邮件,但您可以根据需要添加 signerEmail 属性。您必须指定主机名和电子邮件。见下文:

{
    "disableResponsiveDocument" : false,
    "emailBlurb" : "",
    "emailSubject" : "Please DocuSign Company Agreement",
    "recipients" : 
    {
        "carbonCopies" : []
    },
    "status" : "sent",
    "templateId" : "xxxx-xxx-xxx-xxx-xxxxxxx",
    "templateRoles" : 
    [
        {
            "singerName" : "John Simpson",
            "hostEmail" :  "host@acmetrading.com"
            "hostName" : "Host Simpson"
            "roleName" : "Customer",
            "routingOrder" : "1",
            "tabs" : {}
        }
    ]
}