4

While Requesting the recipient view in docusign, I am getting the error as

 "errorCode": "USER_DOES_NOT_BELONG_TO_SPECIFIED_ACCOUNT",
  "message": "The specified User is not a member of the specified Account."

Below is the URL that I am referring:

https://developers.docusign.com/esign-rest-api/guides/embedded-signing

I have added the users in specified account and also given the input to fetch the response. But anyhow getting the above error.

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 
4

1 回答 1

0

想要发送文档的用户需要一个 DocuSign 帐户。

听起来您的用户名/密码已更改,但仍指向以前的帐户。要解决此问题,您需要更新集成以指向新帐户。

在这里你可以找到状态码

于 2019-01-11T02:53:17.930 回答