Skip to content

Commit 5022d1f

Browse files
committed
Version 2.1.0-v2.1-1.1.1 release
1 parent 3682c0d commit 5022d1f

4 files changed

Lines changed: 17 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
44

55

6+
## [v2.1.0] - Admin API v2.1-1.1.1 - 2023-03-22
7+
### Changed
8+
- Added support for version v2.1-1.1.1 of the DocuSign Admin API.
9+
- Updated the SDK release version.
10+
611
## [v2.0.0] - Admin API v2.1-1.1.0 - 2023-01-23
712
### Breaking
813
- Deprecating Node versions <12

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ commented out
1616

1717

1818
## Requirements
19-
- Node 4
19+
- Node 12
2020
- Free [Developer Account](https://go.docusign.com/sandbox/productshot/?elqCampaignId=16531)
2121
- DocuSign Admin account connected to your Developer account. [Here is how to create a developer account](https://go.docusign.com/o/sandbox/?ga=2.70927056.1363819232.1590515244-192278368.1546193875&ECID=20890&elqCampaignId=20890&LS=NA_DEV_BOTH_BetaSite_2020-05&utm_campaign=NA_DEV_BOTH_BetaSite_2020-05&Channel=DDCUS000016968056&cName=DocuSign.com&postActivateUrl=https://developers.docusign.com/)
2222

2323
## Compatibility
2424

25-
- Node 4+
25+
- Node 12+
2626

2727
## Note:
2828

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docusign-admin",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "The DocuSign Admin API enables you to automate user management with your existing systems while ensuring governance and compliance.",
55
"license": "MIT",
66
"main": "src/index.js",

src/api/BulkImportsApi.js

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,17 +181,23 @@
181181
* Closes the Bulk User Import request
182182
* Required scopes: user_write
183183
* @param {String} organizationId The organization ID Guid
184+
* @param {Object} fileCsv CSV file.
184185
* @param {module:api/BulkImportsApi~createBulkImportCloseUsersRequestCallback} callback The callback function, accepting three arguments: error, data, response
185186
* data is of type: {@link module:model/OrganizationImportResponse}
186187
*/
187-
this.createBulkImportCloseUsersRequest = function(organizationId, callback) {
188+
this.createBulkImportCloseUsersRequest = function(organizationId, fileCsv, callback) {
188189
var postBody = null;
189190

190191
// verify the required parameter 'organizationId' is set
191192
if (organizationId === undefined || organizationId === null) {
192193
throw new Error("Missing the required parameter 'organizationId' when calling createBulkImportCloseUsersRequest");
193194
}
194195

196+
// verify the required parameter 'fileCsv' is set
197+
if (fileCsv === undefined || fileCsv === null) {
198+
throw new Error("Missing the required parameter 'fileCsv' when calling createBulkImportCloseUsersRequest");
199+
}
200+
195201
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
196202
if (typeof optsOrCallback !== 'undefined') {
197203
optsOrCallback = callback;
@@ -207,10 +213,11 @@
207213
var headerParams = {
208214
};
209215
var formParams = {
216+
'file.csv': fileCsv
210217
};
211218

212219
var authNames = [];
213-
var contentTypes = ['application/json'];
220+
var contentTypes = ['multipart/form-data'];
214221
var accepts = ['application/json'];
215222
var returnType = OrganizationImportResponse;
216223

0 commit comments

Comments
 (0)