簡體   English   中英

Docusign NodeJS 信封視圖:createRecipient UNKNOWN_ENVELOPE_RECIPIENT

[英]Docusign NodeJS EnvelopeViews: createRecipient UNKNOWN_ENVELOPE_RECIPIENT

I call the GET envelope recipients API https://demo.docusign.net/restapi/v2.1/accounts/cf70dfa7-a861-4029-b149-5360c090ebfa/envelopes/4de0ca11-e07b-4ff0-936f-cdd37ff18ed2/recipients and it返回 clientUserId、userId、email 等。奇怪的是,即使我將其發送給自己,它返回的用戶 ID 與我發送的用戶 ID 不同。

{
    "signers": [
        {
            "creationReason": "sender",
            "isBulkRecipient": "false",
            "recipientSuppliesTabs": "true",
            "requireUploadSignature": "false",
            "name": "michael",
            "firstName": "",
            "lastName": "",
            "email": "email@email.email",
            "recipientId": "2",                  //idk why this is 2
            "recipientIdGuid": "smth",
            "requireIdLookup": "false",
            "userId": "fdbb65f9-ea71-4e59-8374-0e1952c70e0a",
            "clientUserId": "random",
            "routingOrder": "1",
            "roleName": "signer",
            "status": "sent",
            "completedCount": "0",
            "deliveryMethod": "email",
            "recipientType": "signer"
        }
    ],etcetc
}

使用那些我稱之為 POST /view/recipient API 並插入所有相同的東西

{
  "authenticationMethod": "HTTPBasicAuth",//I've tried this and password
  "clientUserId": "random",
  "email": "userid", //Tried both user ID's, and email + name, didnt work
  "recipientId": "2",     //same as above
  "returnUrl": "http://localhost:3001/marketplace",
  "userName": "userid"//tried same thing, and leaving this blank, gave another error
}

但它給出了錯誤代碼

{
    "errorCode": "UNKNOWN_ENVELOPE_RECIPIENT",
    "message": "The recipient you have identified is not a valid recipient of the specified envelope."
}

請幫忙,我會用你想要的任何加密貨幣支付給你 1 美元。

以下是您的第二次呼叫應基於您的第一次呼叫:

{
  "authenticationMethod": "none",
  "clientUserId": "123456",
  "email": "email@email.email", 
  "returnUrl": "http://localhost:3001/marketplace",
  "userName": "michael"
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM