2017-08-29 42 views
1

的有效載荷文本/ CSV我可以看到REST API文檔上bulkrecipients,對象recipientSignatureProviderInfo可以被添加到JSON有效載荷:的DocuSign:如何recipientSignatureProviderInfo添加到Bulkrecipients

{ 
    "bulkRecipients": [ 
     { 
      "rowNumber": "sample string 1", 
      "email": "sample string 2", 
      "name": "sample string 3", 
      "note": "sample string 4", 
      "accessCode": "sample string 5", 
      "identification": "sample string 6", 
      "phoneNumber": "sample string 7", 
      "tabLabels": [ 
       { 
        "name": "sample string 1", 
        "value": "sample string 2" 
       } 
      ], 
      "recipientSignatureProviderInfo": [ 
       { 
        "name": "sample string 1", 
        "value": "sample string 2" 
       } 
      ] 
     } 
    ] 
} 

但是,什麼是將此添加到文本/ csv內容類型的正確方法是什麼?

例如:

Name,Email,Note,AccessCode,Identification,PhoneNumber,address1 
David Jones,[email protected],Here is the document we discussed.,,ID Check,,123 Main St 
Kevin Smith,[email protected],,2243,,,697 My Way 
Elisabeth Bozick,[email protected],,,phone,usersupplied,827 1st Ave 

Whta是正確的頭名?我試過「recipientSignatureProviderInfo」,但似乎沒有工作。

在此先感謝!

+0

歡迎StackOverflow.Please [接受](https://stackoverflow.com/help/accepted-answer)和[給予好評](https://stackoverflow.com/help/privileges/vote如果它解決了你的問題,那麼答案就是答案。請發佈其他意見或新的 問題獲得更多幫助。請參閱[如果某人回答我的問題,該怎麼辦?](https://stackoverflow.com/help/someone-answers) –

回答