指定的标识工作流输入选项 phone 编号列表为空

The identity workflow intput option phone number list specified is empty

我正在尝试使用 DocuSign 模板和使用 SMS 验证的亲自签名来创建和发送信封。我可以使用常规收件人签名者发送信封,但在使用 Template/In 个人签名者组合时遇到问题。我的请求收到了这样的回复:

{
    "errorCode" : "IDENTITY_WORKFLOW_INVALID_INPUTOPTION_EMPTY_PHONE_NUMBER_LIST",
    "message" : "The identity workflow intput option phone number list specified is empty."
}

这是我发送的 JSON 信封:

    {
    "disableResponsiveDocument" : false,
    "emailBlurb" : "",
    "emailSubject" : "Please DocuSign Company Agreement",
    "recipients" : 
    {
        "carbonCopies" : []
    },
    "status" : "sent",
    "templateId" : "xxxx-xxx-xxx-xxx-xxxxxxx",
    "templateRoles" : 
    [
        {
            "hostEmail" : "host@acmetrading.com",
            "hostName" : "John Simpson",
            "identityVerification" : 
            {
                "inputOptions" : 
                [
                    {
                        "name" : "phone_number_list",
                        "phoneNumberList" : 
                        [
                            {
                                "countryCode" : "61",
                                "number" : "0412 345 678"
                            }
                        ],
                        "valueType" : "PhoneNumberList"
                    }
                ],
                "steps" : null,
                "workflowId" : "xxxx-xxx-xxx-xxx-xxxxxxx"
            },
            "inPersonSignerName" : "Jenny Jones",
            "roleName" : "Customer",
            "routingOrder" : "1",
            "tabs" : {}
        }
    ]
}

我遵循了 instructions for phone authentication 并且相同的代码适用于常规签名者所以不确定我在这里做错了什么?

Phone 数字不能包含空格

0412 345 678 - 不好

0412345678 不错

(顺便说一句,如果这是你的真实号码,你会收到一条来自 DocuSign 的短信 - 那是我试过的)