在docusign中请求收件人视图时,出现错误
"errorCode": "USER_DOES_NOT_BELONG_TO_SPECIFIED_ACCOUNT",
"message": "The specified User is not a member of the specified Account."
以下是我要引用的网址:
https://developers.docusign.com/esign-rest-api/guides/embedded-signing
我已经在指定的帐户中添加了用户,并且还提供了获取响应的输入。但是无论如何都会出现上述错误。
curl -k -X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H 'X-DocuSign-Authentication: {
"Username":"developer@example.com",
"Password":"S3cre+p455w0Rd",
"IntegratorKey":"230546a7-9c55-40ad-8fbf-af205d5494ad"}' \
-d '{"authenticationMethod":"email",
"clientUserId":"1000",
"email":"the_nda_signer@mailinator.com",
"recipientId":"1",
"returnUrl":"http://httpbin.org/get",
"userName":"Darlene Petersen"}' \
https://demo.docusign.net/restapi/v2/accounts/000000/envelopes/4280f274-bfee-419b-9514-b218b7eeda08/views/recipient
答案 0 :(得分:0)