我有以下请求发送到DocuSign API,
"emailSubject": 'DocuSign API - Signature Request on Document Call',
"documents": [{
"name": test.pdf,
"documentId": 1,
}]
我不明白的是,文档名称应该放在哪里以及documentId。
我收到如下错误:
{ errorCode: 'INVALID_REQUEST_PARAMETER',
message: 'The request contained at least one invalid parameter. A document was defined without setting the \'name\' field.' }
Error calling webservice, status is: 400
我认为找不到pdf。
答案 0 :(得分:0)
您应该在name
字段填写正确的路径:
"name": "path/to/existing/pdf/test.pdf",