-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBulkExportsApi.js
More file actions
512 lines (442 loc) · 21.3 KB
/
BulkExportsApi.js
File metadata and controls
512 lines (442 loc) · 21.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
/**
* Docusign Admin API
* An API for an organization administrator to manage organizations, accounts and users
*
* OpenAPI spec version: v2.1
* Contact: devcenter@docusign.com
*
* NOTE: This class is auto generated. Do not edit the class manually and submit a new issue instead.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['Configuration', 'ApiClient', 'model/OrganizationAccountsRequest', 'model/OrganizationExportRequest', 'model/OrganizationExportResponse', 'model/OrganizationExportsResponse'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
module.exports = factory(require('../Configuration'), require('../ApiClient'), require('../model/OrganizationAccountsRequest'), require('../model/OrganizationExportRequest'), require('../model/OrganizationExportResponse'), require('../model/OrganizationExportsResponse'));
} else {
// Browser globals (root is window)
if (!root.DocusignAdmin) {
root.DocusignAdmin = {};
}
root.DocusignAdmin.BulkExportsApi = factory(root.DocusignAdmin.Configuration, root.DocusignAdmin.ApiClient, root.DocusignAdmin.OrganizationAccountsRequest, root.DocusignAdmin.OrganizationExportRequest, root.DocusignAdmin.OrganizationExportResponse, root.DocusignAdmin.OrganizationExportsResponse);
}
}(this, function(Configuration, ApiClient, OrganizationAccountsRequest, OrganizationExportRequest, OrganizationExportResponse, OrganizationExportsResponse) {
'use strict';
/**
* BulkExports service.
* @module api/BulkExportsApi
*/
/**
* Constructs a new BulkExportsApi.
* @alias module:api/BulkExportsApi
* @class
* @param {module:ApiClient} apiClient Optional API client implementation to use,
* default to {@link module:ApiClient#instance} if unspecified.
*/
var exports = function(apiClient) {
this.apiClient = apiClient || Configuration.default.getDefaultApiClient() || ApiClient.instance;
this.setApiClient = function(apiClient) {
this.apiClient = apiClient;
};
this.getApiClient = function() {
return this.apiClient;
};
/**
* (Optional) Callback function to receive the result of the createAccountSettingsExport operation. If none specified a Promise will be returned.
* @callback module:api/BulkExportsApi~createAccountSettingsExportCallback
* @param {String} error Error message, if any.
* @param {module:model/OrganizationExportResponse} data The data returned by the service call.
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
*/
/**
* Creates a new Account Setting Export request.
* Required scopes: account_read
* @param {String} organizationId The organization ID Guid
* @param {module:model/OrganizationAccountsRequest} request Request body containing details about the accounts be compared
* @param {module:api/BulkExportsApi~createAccountSettingsExportCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/OrganizationExportResponse}
*/
this.createAccountSettingsExport = function(request, organizationId, callback) {
var postBody = request;
// verify the required parameter 'organizationId' is set
if (organizationId === undefined || organizationId === null) {
throw new Error("Missing the required parameter 'organizationId' when calling createAccountSettingsExport");
}
// verify the required parameter 'request' is set
if (request === undefined || request === null) {
throw new Error("Missing the required parameter 'request' when calling createAccountSettingsExport");
}
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
if (typeof optsOrCallback !== 'undefined') {
optsOrCallback = callback;
}
callback = arguments[arguments.length-1];
}
var pathParams = {
'organizationId': organizationId
};
var queryParams = {
};
var headerParams = {
};
var formParams = {
};
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];
var accepts = ['application/json'];
var returnType = OrganizationExportResponse;
return this.apiClient.callApi(
'/v2/organizations/{organizationId}/exports/account_settings', 'POST',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
};
/**
* (Optional) Callback function to receive the result of the createUserListExport operation. If none specified a Promise will be returned.
* @callback module:api/BulkExportsApi~createUserListExportCallback
* @param {String} error Error message, if any.
* @param {module:model/OrganizationExportResponse} data The data returned by the service call.
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
*/
/**
* Creates a new User List Export request.
* Required scopes: user_read
* @param {String} organizationId The organization ID Guid
* @param {module:model/OrganizationExportRequest} request Request body containing details about what is to be exported
* @param {module:api/BulkExportsApi~createUserListExportCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/OrganizationExportResponse}
*/
this.createUserListExport = function(request, organizationId, callback) {
var postBody = request;
// verify the required parameter 'organizationId' is set
if (organizationId === undefined || organizationId === null) {
throw new Error("Missing the required parameter 'organizationId' when calling createUserListExport");
}
// verify the required parameter 'request' is set
if (request === undefined || request === null) {
throw new Error("Missing the required parameter 'request' when calling createUserListExport");
}
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
if (typeof optsOrCallback !== 'undefined') {
optsOrCallback = callback;
}
callback = arguments[arguments.length-1];
}
var pathParams = {
'organizationId': organizationId
};
var queryParams = {
};
var headerParams = {
};
var formParams = {
};
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];
var accepts = ['application/json'];
var returnType = OrganizationExportResponse;
return this.apiClient.callApi(
'/v2/organizations/{organizationId}/exports/user_list', 'POST',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
};
/**
* (Optional) Callback function to receive the result of the deleteAccountSettingsExport operation. If none specified a Promise will be returned.
* @callback module:api/BulkExportsApi~deleteAccountSettingsExportCallback
* @param {String} error Error message, if any.
* @param {Object} data The data returned by the service call.
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
*/
/**
* Deletes a single Account Settings Export request
* Required scopes: account_read
* @param {String} organizationId The organization ID Guid
* @param {String} exportId The export ID Guid for the request
* @param {module:api/BulkExportsApi~deleteAccountSettingsExportCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link Object}
*/
this.deleteAccountSettingsExport = function(organizationId, exportId, callback) {
var postBody = null;
// verify the required parameter 'organizationId' is set
if (organizationId === undefined || organizationId === null) {
throw new Error("Missing the required parameter 'organizationId' when calling deleteAccountSettingsExport");
}
// verify the required parameter 'exportId' is set
if (exportId === undefined || exportId === null) {
throw new Error("Missing the required parameter 'exportId' when calling deleteAccountSettingsExport");
}
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
if (typeof optsOrCallback !== 'undefined') {
optsOrCallback = callback;
}
callback = arguments[arguments.length-1];
}
var pathParams = {
'organizationId': organizationId,
'exportId': exportId
};
var queryParams = {
};
var headerParams = {
};
var formParams = {
};
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];
var accepts = ['application/json'];
var returnType = Object;
return this.apiClient.callApi(
'/v2/organizations/{organizationId}/exports/account_settings/{exportId}', 'DELETE',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
};
/**
* (Optional) Callback function to receive the result of the deleteUserListExport operation. If none specified a Promise will be returned.
* @callback module:api/BulkExportsApi~deleteUserListExportCallback
* @param {String} error Error message, if any.
* @param {Object} data The data returned by the service call.
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
*/
/**
* Deletes a single User List Export request
* Required scopes: user_read
* @param {String} organizationId The organization ID Guid
* @param {String} exportId The export ID Guid for the request
* @param {module:api/BulkExportsApi~deleteUserListExportCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link Object}
*/
this.deleteUserListExport = function(organizationId, exportId, callback) {
var postBody = null;
// verify the required parameter 'organizationId' is set
if (organizationId === undefined || organizationId === null) {
throw new Error("Missing the required parameter 'organizationId' when calling deleteUserListExport");
}
// verify the required parameter 'exportId' is set
if (exportId === undefined || exportId === null) {
throw new Error("Missing the required parameter 'exportId' when calling deleteUserListExport");
}
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
if (typeof optsOrCallback !== 'undefined') {
optsOrCallback = callback;
}
callback = arguments[arguments.length-1];
}
var pathParams = {
'organizationId': organizationId,
'exportId': exportId
};
var queryParams = {
};
var headerParams = {
};
var formParams = {
};
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];
var accepts = ['application/json'];
var returnType = Object;
return this.apiClient.callApi(
'/v2/organizations/{organizationId}/exports/user_list/{exportId}', 'DELETE',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
};
/**
* (Optional) Callback function to receive the result of the getAccountSettingsExport operation. If none specified a Promise will be returned.
* @callback module:api/BulkExportsApi~getAccountSettingsExportCallback
* @param {String} error Error message, if any.
* @param {module:model/OrganizationExportResponse} data The data returned by the service call.
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
*/
/**
* Returns the details/metadata for a single Account Setting Export request
* Required scopes: account_read
* @param {String} organizationId The organization ID Guid
* @param {String} exportId The export ID Guid for the request
* @param {module:api/BulkExportsApi~getAccountSettingsExportCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/OrganizationExportResponse}
*/
this.getAccountSettingsExport = function(organizationId, exportId, callback) {
var postBody = null;
// verify the required parameter 'organizationId' is set
if (organizationId === undefined || organizationId === null) {
throw new Error("Missing the required parameter 'organizationId' when calling getAccountSettingsExport");
}
// verify the required parameter 'exportId' is set
if (exportId === undefined || exportId === null) {
throw new Error("Missing the required parameter 'exportId' when calling getAccountSettingsExport");
}
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
if (typeof optsOrCallback !== 'undefined') {
optsOrCallback = callback;
}
callback = arguments[arguments.length-1];
}
var pathParams = {
'organizationId': organizationId,
'exportId': exportId
};
var queryParams = {
};
var headerParams = {
};
var formParams = {
};
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];
var accepts = ['application/json'];
var returnType = OrganizationExportResponse;
return this.apiClient.callApi(
'/v2/organizations/{organizationId}/exports/account_settings/{exportId}', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
};
/**
* (Optional) Callback function to receive the result of the getAccountSettingsExports operation. If none specified a Promise will be returned.
* @callback module:api/BulkExportsApi~getAccountSettingsExportsCallback
* @param {String} error Error message, if any.
* @param {module:model/OrganizationExportsResponse} data The data returned by the service call.
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
*/
/**
* Returns the details/metadata for Account Setting Export requests
* Required scopes: account_read
* @param {String} organizationId The organization ID Guid
* @param {module:api/BulkExportsApi~getAccountSettingsExportsCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/OrganizationExportsResponse}
*/
this.getAccountSettingsExports = function(organizationId, callback) {
var postBody = null;
// verify the required parameter 'organizationId' is set
if (organizationId === undefined || organizationId === null) {
throw new Error("Missing the required parameter 'organizationId' when calling getAccountSettingsExports");
}
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
if (typeof optsOrCallback !== 'undefined') {
optsOrCallback = callback;
}
callback = arguments[arguments.length-1];
}
var pathParams = {
'organizationId': organizationId
};
var queryParams = {
};
var headerParams = {
};
var formParams = {
};
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];
var accepts = ['application/json'];
var returnType = OrganizationExportsResponse;
return this.apiClient.callApi(
'/v2/organizations/{organizationId}/exports/account_settings', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
};
/**
* (Optional) Callback function to receive the result of the getUserListExport operation. If none specified a Promise will be returned.
* @callback module:api/BulkExportsApi~getUserListExportCallback
* @param {String} error Error message, if any.
* @param {module:model/OrganizationExportResponse} data The data returned by the service call.
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
*/
/**
* Returns the details/metadata for a single User List Export request
* Required scopes: user_read
* @param {String} organizationId The organization ID Guid
* @param {String} exportId The export ID Guid for the request
* @param {module:api/BulkExportsApi~getUserListExportCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/OrganizationExportResponse}
*/
this.getUserListExport = function(organizationId, exportId, callback) {
var postBody = null;
// verify the required parameter 'organizationId' is set
if (organizationId === undefined || organizationId === null) {
throw new Error("Missing the required parameter 'organizationId' when calling getUserListExport");
}
// verify the required parameter 'exportId' is set
if (exportId === undefined || exportId === null) {
throw new Error("Missing the required parameter 'exportId' when calling getUserListExport");
}
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
if (typeof optsOrCallback !== 'undefined') {
optsOrCallback = callback;
}
callback = arguments[arguments.length-1];
}
var pathParams = {
'organizationId': organizationId,
'exportId': exportId
};
var queryParams = {
};
var headerParams = {
};
var formParams = {
};
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];
var accepts = ['application/json'];
var returnType = OrganizationExportResponse;
return this.apiClient.callApi(
'/v2/organizations/{organizationId}/exports/user_list/{exportId}', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
};
/**
* (Optional) Callback function to receive the result of the getUserListExports operation. If none specified a Promise will be returned.
* @callback module:api/BulkExportsApi~getUserListExportsCallback
* @param {String} error Error message, if any.
* @param {module:model/OrganizationExportsResponse} data The data returned by the service call.
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
*/
/**
* Returns a list of existing User List Exports (requests and completed exports) and their details/metadata
* Required scopes: user_read
* @param {String} organizationId The organization ID Guid
* @param {module:api/BulkExportsApi~getUserListExportsCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/OrganizationExportsResponse}
*/
this.getUserListExports = function(organizationId, callback) {
var postBody = null;
// verify the required parameter 'organizationId' is set
if (organizationId === undefined || organizationId === null) {
throw new Error("Missing the required parameter 'organizationId' when calling getUserListExports");
}
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
if (typeof optsOrCallback !== 'undefined') {
optsOrCallback = callback;
}
callback = arguments[arguments.length-1];
}
var pathParams = {
'organizationId': organizationId
};
var queryParams = {
};
var headerParams = {
};
var formParams = {
};
var authNames = ['docusignAccessCode'];
var contentTypes = ['application/json'];
var accepts = ['application/json'];
var returnType = OrganizationExportsResponse;
return this.apiClient.callApi(
'/v2/organizations/{organizationId}/exports/user_list', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, callback
);
};
};
return exports;
}));