sailpoint-api-client 1.6.9 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +264 -550
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +248 -392
  6. package/dist/beta/api.js +104 -416
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +1 -1
  9. package/dist/index.d.ts +2 -0
  10. package/dist/index.js +6 -3
  11. package/dist/index.js.map +1 -1
  12. package/dist/index.spec.js +18 -0
  13. package/dist/index.spec.js.map +1 -1
  14. package/dist/v2024/api.d.ts +123 -361
  15. package/dist/v2024/api.js +93 -410
  16. package/dist/v2024/api.js.map +1 -1
  17. package/dist/v2024/common.js +1 -1
  18. package/dist/v2025/api.d.ts +1643 -412
  19. package/dist/v2025/api.js +2844 -1167
  20. package/dist/v2025/api.js.map +1 -1
  21. package/dist/v2025/common.js +1 -1
  22. package/dist/v2026/api.d.ts +810 -0
  23. package/dist/v2026/api.js +792 -0
  24. package/dist/v2026/api.js.map +1 -0
  25. package/dist/v2026/base.d.ts +66 -0
  26. package/dist/v2026/base.js +89 -0
  27. package/dist/v2026/base.js.map +1 -0
  28. package/dist/v2026/common.d.ts +65 -0
  29. package/dist/v2026/common.js +266 -0
  30. package/dist/v2026/common.js.map +1 -0
  31. package/dist/v2026/configuration.d.ts +91 -0
  32. package/dist/v2026/configuration.js +46 -0
  33. package/dist/v2026/configuration.js.map +1 -0
  34. package/dist/v2026/index.d.ts +13 -0
  35. package/dist/v2026/index.js +32 -0
  36. package/dist/v2026/index.js.map +1 -0
  37. package/dist/v3/api.d.ts +85 -365
  38. package/dist/v3/api.js +67 -383
  39. package/dist/v3/api.js.map +1 -1
  40. package/dist/v3/common.js +1 -1
  41. package/index.spec.ts +11 -1
  42. package/index.ts +3 -0
  43. package/package.json +1 -1
  44. package/v2024/README.md +2 -2
  45. package/v2024/api.ts +134 -517
  46. package/v2024/common.ts +2 -2
  47. package/v2024/package.json +1 -1
  48. package/v2025/README.md +2 -2
  49. package/v2025/api.ts +2816 -770
  50. package/v2025/common.ts +2 -2
  51. package/v2025/package.json +1 -1
  52. package/v2026/.openapi-generator/FILES +12 -0
  53. package/v2026/.openapi-generator/VERSION +1 -0
  54. package/v2026/.openapi-generator-ignore +23 -0
  55. package/v2026/README.md +46 -0
  56. package/v2026/api.ts +1180 -0
  57. package/v2026/base.ts +86 -0
  58. package/v2026/common.ts +165 -0
  59. package/v2026/configuration.ts +110 -0
  60. package/v2026/git_push.sh +57 -0
  61. package/v2026/index.ts +18 -0
  62. package/v2026/package.json +34 -0
  63. package/v2026/tsconfig.json +21 -0
  64. package/v3/README.md +2 -2
  65. package/v3/api.ts +93 -518
  66. package/v3/common.ts +2 -2
  67. package/v3/package.json +1 -1
@@ -0,0 +1,810 @@
1
+ /**
2
+ * Identity Security Cloud v2026 API
3
+ * Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
4
+ *
5
+ * The version of the OpenAPI document: v2026
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { Configuration } from '../configuration';
13
+ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ import type { RequestArgs } from './base';
15
+ import { BaseAPI } from './base';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface ArrayInnerV2026
20
+ */
21
+ export interface ArrayInnerV2026 {
22
+ }
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface ErrorMessageDtoV2026
27
+ */
28
+ export interface ErrorMessageDtoV2026 {
29
+ /**
30
+ * The locale for the message text, a BCP 47 language tag.
31
+ * @type {string}
32
+ * @memberof ErrorMessageDtoV2026
33
+ */
34
+ 'locale'?: string | null;
35
+ /**
36
+ *
37
+ * @type {LocaleOriginV2026}
38
+ * @memberof ErrorMessageDtoV2026
39
+ */
40
+ 'localeOrigin'?: LocaleOriginV2026 | null;
41
+ /**
42
+ * Actual text of the error message in the indicated locale.
43
+ * @type {string}
44
+ * @memberof ErrorMessageDtoV2026
45
+ */
46
+ 'text'?: string;
47
+ }
48
+ /**
49
+ *
50
+ * @export
51
+ * @interface ErrorResponseDtoV2026
52
+ */
53
+ export interface ErrorResponseDtoV2026 {
54
+ /**
55
+ * Fine-grained error code providing more detail of the error.
56
+ * @type {string}
57
+ * @memberof ErrorResponseDtoV2026
58
+ */
59
+ 'detailCode'?: string;
60
+ /**
61
+ * Unique tracking id for the error.
62
+ * @type {string}
63
+ * @memberof ErrorResponseDtoV2026
64
+ */
65
+ 'trackingId'?: string;
66
+ /**
67
+ * Generic localized reason for error
68
+ * @type {Array<ErrorMessageDtoV2026>}
69
+ * @memberof ErrorResponseDtoV2026
70
+ */
71
+ 'messages'?: Array<ErrorMessageDtoV2026>;
72
+ /**
73
+ * Plain-text descriptive reasons to provide additional detail to the text provided in the messages field
74
+ * @type {Array<ErrorMessageDtoV2026>}
75
+ * @memberof ErrorResponseDtoV2026
76
+ */
77
+ 'causes'?: Array<ErrorMessageDtoV2026>;
78
+ }
79
+ /**
80
+ *
81
+ * @export
82
+ * @interface GetTaskStatus401ResponseV2026
83
+ */
84
+ export interface GetTaskStatus401ResponseV2026 {
85
+ /**
86
+ * A message describing the error
87
+ * @type {object}
88
+ * @memberof GetTaskStatus401ResponseV2026
89
+ */
90
+ 'error'?: object;
91
+ }
92
+ /**
93
+ *
94
+ * @export
95
+ * @interface GetTaskStatus429ResponseV2026
96
+ */
97
+ export interface GetTaskStatus429ResponseV2026 {
98
+ /**
99
+ * A message describing the error
100
+ * @type {object}
101
+ * @memberof GetTaskStatus429ResponseV2026
102
+ */
103
+ 'message'?: object;
104
+ }
105
+ /**
106
+ * A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)
107
+ * @export
108
+ * @interface JsonPatchOperationV2026
109
+ */
110
+ export interface JsonPatchOperationV2026 {
111
+ /**
112
+ * The operation to be performed
113
+ * @type {string}
114
+ * @memberof JsonPatchOperationV2026
115
+ */
116
+ 'op': JsonPatchOperationV2026OpV2026;
117
+ /**
118
+ * A string JSON Pointer representing the target path to an element to be affected by the operation
119
+ * @type {string}
120
+ * @memberof JsonPatchOperationV2026
121
+ */
122
+ 'path': string;
123
+ /**
124
+ *
125
+ * @type {JsonPatchOperationValueV2026}
126
+ * @memberof JsonPatchOperationV2026
127
+ */
128
+ 'value'?: JsonPatchOperationValueV2026;
129
+ }
130
+ export declare const JsonPatchOperationV2026OpV2026: {
131
+ readonly Add: "add";
132
+ readonly Remove: "remove";
133
+ readonly Replace: "replace";
134
+ readonly Move: "move";
135
+ readonly Copy: "copy";
136
+ readonly Test: "test";
137
+ };
138
+ export type JsonPatchOperationV2026OpV2026 = typeof JsonPatchOperationV2026OpV2026[keyof typeof JsonPatchOperationV2026OpV2026];
139
+ /**
140
+ * @type JsonPatchOperationValueV2026
141
+ * The value to be used for the operation, required for \"add\" and \"replace\" operations
142
+ * @export
143
+ */
144
+ export type JsonPatchOperationValueV2026 = Array<ArrayInnerV2026> | boolean | number | object | string;
145
+ /**
146
+ * An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.
147
+ * @export
148
+ * @enum {string}
149
+ */
150
+ export declare const LocaleOriginV2026: {
151
+ readonly Default: "DEFAULT";
152
+ readonly Request: "REQUEST";
153
+ };
154
+ export type LocaleOriginV2026 = typeof LocaleOriginV2026[keyof typeof LocaleOriginV2026];
155
+ /**
156
+ * Localized error message to indicate a failed invocation or error if any.
157
+ * @export
158
+ * @interface LocalizedMessageV2026
159
+ */
160
+ export interface LocalizedMessageV2026 {
161
+ /**
162
+ * Message locale
163
+ * @type {string}
164
+ * @memberof LocalizedMessageV2026
165
+ */
166
+ 'locale': string;
167
+ /**
168
+ * Message text
169
+ * @type {string}
170
+ * @memberof LocalizedMessageV2026
171
+ */
172
+ 'message': string;
173
+ }
174
+ /**
175
+ *
176
+ * @export
177
+ * @interface TargetV2026
178
+ */
179
+ export interface TargetV2026 {
180
+ /**
181
+ * Target ID
182
+ * @type {string}
183
+ * @memberof TargetV2026
184
+ */
185
+ 'id'?: string;
186
+ /**
187
+ * Target type
188
+ * @type {string}
189
+ * @memberof TargetV2026
190
+ */
191
+ 'type'?: TargetV2026TypeV2026 | null;
192
+ /**
193
+ * Target name
194
+ * @type {string}
195
+ * @memberof TargetV2026
196
+ */
197
+ 'name'?: string;
198
+ }
199
+ export declare const TargetV2026TypeV2026: {
200
+ readonly Application: "APPLICATION";
201
+ readonly Identity: "IDENTITY";
202
+ };
203
+ export type TargetV2026TypeV2026 = typeof TargetV2026TypeV2026[keyof typeof TargetV2026TypeV2026];
204
+ /**
205
+ * Definition of a type of task, used to invoke tasks
206
+ * @export
207
+ * @interface TaskDefinitionSummaryV2026
208
+ */
209
+ export interface TaskDefinitionSummaryV2026 {
210
+ /**
211
+ * System-generated unique ID of the TaskDefinition
212
+ * @type {string}
213
+ * @memberof TaskDefinitionSummaryV2026
214
+ */
215
+ 'id': string;
216
+ /**
217
+ * Name of the TaskDefinition
218
+ * @type {string}
219
+ * @memberof TaskDefinitionSummaryV2026
220
+ */
221
+ 'uniqueName': string;
222
+ /**
223
+ * Description of the TaskDefinition
224
+ * @type {string}
225
+ * @memberof TaskDefinitionSummaryV2026
226
+ */
227
+ 'description': string | null;
228
+ /**
229
+ * Name of the parent of the TaskDefinition
230
+ * @type {string}
231
+ * @memberof TaskDefinitionSummaryV2026
232
+ */
233
+ 'parentName': string;
234
+ /**
235
+ * Executor of the TaskDefinition
236
+ * @type {string}
237
+ * @memberof TaskDefinitionSummaryV2026
238
+ */
239
+ 'executor': string | null;
240
+ /**
241
+ * Formal parameters of the TaskDefinition, without values
242
+ * @type {{ [key: string]: any; }}
243
+ * @memberof TaskDefinitionSummaryV2026
244
+ */
245
+ 'arguments': {
246
+ [key: string]: any;
247
+ };
248
+ }
249
+ /**
250
+ * Task return details
251
+ * @export
252
+ * @interface TaskReturnDetailsV2026
253
+ */
254
+ export interface TaskReturnDetailsV2026 {
255
+ /**
256
+ * Display name of the TaskReturnDetails
257
+ * @type {string}
258
+ * @memberof TaskReturnDetailsV2026
259
+ */
260
+ 'name': string;
261
+ /**
262
+ * Attribute the TaskReturnDetails is for
263
+ * @type {string}
264
+ * @memberof TaskReturnDetailsV2026
265
+ */
266
+ 'attributeName': string;
267
+ }
268
+ /**
269
+ *
270
+ * @export
271
+ * @interface TaskStatusMessageParametersInnerV2026
272
+ */
273
+ export interface TaskStatusMessageParametersInnerV2026 {
274
+ }
275
+ /**
276
+ * TaskStatus Message
277
+ * @export
278
+ * @interface TaskStatusMessageV2026
279
+ */
280
+ export interface TaskStatusMessageV2026 {
281
+ /**
282
+ * Type of the message
283
+ * @type {string}
284
+ * @memberof TaskStatusMessageV2026
285
+ */
286
+ 'type': TaskStatusMessageV2026TypeV2026;
287
+ /**
288
+ *
289
+ * @type {LocalizedMessageV2026}
290
+ * @memberof TaskStatusMessageV2026
291
+ */
292
+ 'localizedText': LocalizedMessageV2026 | null;
293
+ /**
294
+ * Key of the message
295
+ * @type {string}
296
+ * @memberof TaskStatusMessageV2026
297
+ */
298
+ 'key': string;
299
+ /**
300
+ * Message parameters for internationalization
301
+ * @type {Array<TaskStatusMessageParametersInnerV2026>}
302
+ * @memberof TaskStatusMessageV2026
303
+ */
304
+ 'parameters': Array<TaskStatusMessageParametersInnerV2026> | null;
305
+ }
306
+ export declare const TaskStatusMessageV2026TypeV2026: {
307
+ readonly Info: "INFO";
308
+ readonly Warn: "WARN";
309
+ readonly Error: "ERROR";
310
+ };
311
+ export type TaskStatusMessageV2026TypeV2026 = typeof TaskStatusMessageV2026TypeV2026[keyof typeof TaskStatusMessageV2026TypeV2026];
312
+ /**
313
+ * Details and current status of a specific task
314
+ * @export
315
+ * @interface TaskStatusV2026
316
+ */
317
+ export interface TaskStatusV2026 {
318
+ /**
319
+ * System-generated unique ID of the task this TaskStatus represents
320
+ * @type {string}
321
+ * @memberof TaskStatusV2026
322
+ */
323
+ 'id': string;
324
+ /**
325
+ * Type of task this TaskStatus represents
326
+ * @type {string}
327
+ * @memberof TaskStatusV2026
328
+ */
329
+ 'type': TaskStatusV2026TypeV2026;
330
+ /**
331
+ * Name of the task this TaskStatus represents
332
+ * @type {string}
333
+ * @memberof TaskStatusV2026
334
+ */
335
+ 'uniqueName': string;
336
+ /**
337
+ * Description of the task this TaskStatus represents
338
+ * @type {string}
339
+ * @memberof TaskStatusV2026
340
+ */
341
+ 'description': string;
342
+ /**
343
+ * Name of the parent of the task this TaskStatus represents
344
+ * @type {string}
345
+ * @memberof TaskStatusV2026
346
+ */
347
+ 'parentName': string | null;
348
+ /**
349
+ * Service to execute the task this TaskStatus represents
350
+ * @type {string}
351
+ * @memberof TaskStatusV2026
352
+ */
353
+ 'launcher': string;
354
+ /**
355
+ *
356
+ * @type {TargetV2026}
357
+ * @memberof TaskStatusV2026
358
+ */
359
+ 'target'?: TargetV2026 | null;
360
+ /**
361
+ * Creation date of the task this TaskStatus represents
362
+ * @type {string}
363
+ * @memberof TaskStatusV2026
364
+ */
365
+ 'created': string;
366
+ /**
367
+ * Last modification date of the task this TaskStatus represents
368
+ * @type {string}
369
+ * @memberof TaskStatusV2026
370
+ */
371
+ 'modified': string;
372
+ /**
373
+ * Launch date of the task this TaskStatus represents
374
+ * @type {string}
375
+ * @memberof TaskStatusV2026
376
+ */
377
+ 'launched': string | null;
378
+ /**
379
+ * Completion date of the task this TaskStatus represents
380
+ * @type {string}
381
+ * @memberof TaskStatusV2026
382
+ */
383
+ 'completed': string | null;
384
+ /**
385
+ * Completion status of the task this TaskStatus represents
386
+ * @type {string}
387
+ * @memberof TaskStatusV2026
388
+ */
389
+ 'completionStatus': TaskStatusV2026CompletionStatusV2026 | null;
390
+ /**
391
+ * Messages associated with the task this TaskStatus represents
392
+ * @type {Array<TaskStatusMessageV2026>}
393
+ * @memberof TaskStatusV2026
394
+ */
395
+ 'messages': Array<TaskStatusMessageV2026>;
396
+ /**
397
+ * Return values from the task this TaskStatus represents
398
+ * @type {Array<TaskReturnDetailsV2026>}
399
+ * @memberof TaskStatusV2026
400
+ */
401
+ 'returns': Array<TaskReturnDetailsV2026>;
402
+ /**
403
+ * Attributes of the task this TaskStatus represents
404
+ * @type {{ [key: string]: any; }}
405
+ * @memberof TaskStatusV2026
406
+ */
407
+ 'attributes': {
408
+ [key: string]: any;
409
+ };
410
+ /**
411
+ * Current progress of the task this TaskStatus represents
412
+ * @type {string}
413
+ * @memberof TaskStatusV2026
414
+ */
415
+ 'progress': string | null;
416
+ /**
417
+ * Current percentage completion of the task this TaskStatus represents
418
+ * @type {number}
419
+ * @memberof TaskStatusV2026
420
+ */
421
+ 'percentComplete': number;
422
+ /**
423
+ *
424
+ * @type {TaskDefinitionSummaryV2026}
425
+ * @memberof TaskStatusV2026
426
+ */
427
+ 'taskDefinitionSummary'?: TaskDefinitionSummaryV2026;
428
+ }
429
+ export declare const TaskStatusV2026TypeV2026: {
430
+ readonly Quartz: "QUARTZ";
431
+ readonly Qpoc: "QPOC";
432
+ readonly QueuedTask: "QUEUED_TASK";
433
+ };
434
+ export type TaskStatusV2026TypeV2026 = typeof TaskStatusV2026TypeV2026[keyof typeof TaskStatusV2026TypeV2026];
435
+ export declare const TaskStatusV2026CompletionStatusV2026: {
436
+ readonly Success: "SUCCESS";
437
+ readonly Warning: "WARNING";
438
+ readonly Error: "ERROR";
439
+ readonly Terminated: "TERMINATED";
440
+ readonly Temperror: "TEMPERROR";
441
+ };
442
+ export type TaskStatusV2026CompletionStatusV2026 = typeof TaskStatusV2026CompletionStatusV2026[keyof typeof TaskStatusV2026CompletionStatusV2026];
443
+ /**
444
+ * TaskManagementV2026Api - axios parameter creator
445
+ * @export
446
+ */
447
+ export declare const TaskManagementV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
448
+ /**
449
+ * Responds with headers only for list of task statuses for pending tasks.
450
+ * @summary Retrieve pending task list headers
451
+ * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
452
+ * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
453
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
454
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
455
+ * @param {*} [axiosOptions] Override http request option.
456
+ * @throws {RequiredError}
457
+ */
458
+ getPendingTaskHeaders: (offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
459
+ /**
460
+ * Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned. Possible tasks to be returned: Cloud Account Aggregation, Cloud Group Aggregation, Cloud Process Uncorrelated Accounts, Cloud Refresh Role, Source Application Discovery, AI Agent Aggregation, Cloud Entitlement Import, Cloud Uncorrelated Refresh, Cloud Identity Aggregation, Cloud Attribute Synchronization, Identity Refresh
461
+ * @summary Retrieve pending task status list
462
+ * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
463
+ * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
464
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
465
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
466
+ * @param {*} [axiosOptions] Override http request option.
467
+ * @throws {RequiredError}
468
+ */
469
+ getPendingTasks: (offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
470
+ /**
471
+ * Get task status by task ID. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
472
+ * @summary Get task status by id
473
+ * @param {string} id Task ID.
474
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
475
+ * @param {*} [axiosOptions] Override http request option.
476
+ * @throws {RequiredError}
477
+ */
478
+ getTaskStatus: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
479
+ /**
480
+ * Use this endpoint to get a list of statuses for **all** tasks which include finished, in-progress, terminated, and errored tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned. To get a list of statuses for only **in-progress** tasks, please use the [retrieve pending task status list](https://developer.sailpoint.com/docs/api/v2024/get-pending-tasks) endpoint. Possible tasks to be returned: Cloud Account Aggregation, Cloud Group Aggregation, Cloud Process Uncorrelated Accounts, Cloud Refresh Role, Source Application Discovery, AI Agent Aggregation, Cloud Entitlement Import, Cloud Uncorrelated Refresh, Cloud Identity Aggregation, Cloud Attribute Synchronization, Identity Refresh
481
+ * @summary Retrieve task status list
482
+ * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
483
+ * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
484
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
485
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **sourceId**: *eq, in* **completionStatus**: *eq, in* **type**: *eq, in*
486
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created**
487
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
488
+ * @param {*} [axiosOptions] Override http request option.
489
+ * @throws {RequiredError}
490
+ */
491
+ getTaskStatusList: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
492
+ /**
493
+ * Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
494
+ * @summary Update task status by id
495
+ * @param {string} id Task ID.
496
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
497
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
498
+ * @param {*} [axiosOptions] Override http request option.
499
+ * @throws {RequiredError}
500
+ */
501
+ updateTaskStatus: (id: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
502
+ };
503
+ /**
504
+ * TaskManagementV2026Api - functional programming interface
505
+ * @export
506
+ */
507
+ export declare const TaskManagementV2026ApiFp: (configuration?: Configuration) => {
508
+ /**
509
+ * Responds with headers only for list of task statuses for pending tasks.
510
+ * @summary Retrieve pending task list headers
511
+ * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
512
+ * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
513
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
514
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
515
+ * @param {*} [axiosOptions] Override http request option.
516
+ * @throws {RequiredError}
517
+ */
518
+ getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
519
+ /**
520
+ * Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned. Possible tasks to be returned: Cloud Account Aggregation, Cloud Group Aggregation, Cloud Process Uncorrelated Accounts, Cloud Refresh Role, Source Application Discovery, AI Agent Aggregation, Cloud Entitlement Import, Cloud Uncorrelated Refresh, Cloud Identity Aggregation, Cloud Attribute Synchronization, Identity Refresh
521
+ * @summary Retrieve pending task status list
522
+ * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
523
+ * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
524
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
525
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
526
+ * @param {*} [axiosOptions] Override http request option.
527
+ * @throws {RequiredError}
528
+ */
529
+ getPendingTasks(offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2026>>>;
530
+ /**
531
+ * Get task status by task ID. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
532
+ * @summary Get task status by id
533
+ * @param {string} id Task ID.
534
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
535
+ * @param {*} [axiosOptions] Override http request option.
536
+ * @throws {RequiredError}
537
+ */
538
+ getTaskStatus(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2026>>;
539
+ /**
540
+ * Use this endpoint to get a list of statuses for **all** tasks which include finished, in-progress, terminated, and errored tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned. To get a list of statuses for only **in-progress** tasks, please use the [retrieve pending task status list](https://developer.sailpoint.com/docs/api/v2024/get-pending-tasks) endpoint. Possible tasks to be returned: Cloud Account Aggregation, Cloud Group Aggregation, Cloud Process Uncorrelated Accounts, Cloud Refresh Role, Source Application Discovery, AI Agent Aggregation, Cloud Entitlement Import, Cloud Uncorrelated Refresh, Cloud Identity Aggregation, Cloud Attribute Synchronization, Identity Refresh
541
+ * @summary Retrieve task status list
542
+ * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
543
+ * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
544
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
545
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **sourceId**: *eq, in* **completionStatus**: *eq, in* **type**: *eq, in*
546
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created**
547
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
548
+ * @param {*} [axiosOptions] Override http request option.
549
+ * @throws {RequiredError}
550
+ */
551
+ getTaskStatusList(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2026>>>;
552
+ /**
553
+ * Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
554
+ * @summary Update task status by id
555
+ * @param {string} id Task ID.
556
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
557
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
558
+ * @param {*} [axiosOptions] Override http request option.
559
+ * @throws {RequiredError}
560
+ */
561
+ updateTaskStatus(id: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2026>>;
562
+ };
563
+ /**
564
+ * TaskManagementV2026Api - factory interface
565
+ * @export
566
+ */
567
+ export declare const TaskManagementV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
568
+ /**
569
+ * Responds with headers only for list of task statuses for pending tasks.
570
+ * @summary Retrieve pending task list headers
571
+ * @param {TaskManagementV2026ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
572
+ * @param {*} [axiosOptions] Override http request option.
573
+ * @throws {RequiredError}
574
+ */
575
+ getPendingTaskHeaders(requestParameters?: TaskManagementV2026ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
576
+ /**
577
+ * Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned. Possible tasks to be returned: Cloud Account Aggregation, Cloud Group Aggregation, Cloud Process Uncorrelated Accounts, Cloud Refresh Role, Source Application Discovery, AI Agent Aggregation, Cloud Entitlement Import, Cloud Uncorrelated Refresh, Cloud Identity Aggregation, Cloud Attribute Synchronization, Identity Refresh
578
+ * @summary Retrieve pending task status list
579
+ * @param {TaskManagementV2026ApiGetPendingTasksRequest} requestParameters Request parameters.
580
+ * @param {*} [axiosOptions] Override http request option.
581
+ * @throws {RequiredError}
582
+ */
583
+ getPendingTasks(requestParameters?: TaskManagementV2026ApiGetPendingTasksRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaskStatusV2026>>;
584
+ /**
585
+ * Get task status by task ID. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
586
+ * @summary Get task status by id
587
+ * @param {TaskManagementV2026ApiGetTaskStatusRequest} requestParameters Request parameters.
588
+ * @param {*} [axiosOptions] Override http request option.
589
+ * @throws {RequiredError}
590
+ */
591
+ getTaskStatus(requestParameters: TaskManagementV2026ApiGetTaskStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaskStatusV2026>;
592
+ /**
593
+ * Use this endpoint to get a list of statuses for **all** tasks which include finished, in-progress, terminated, and errored tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned. To get a list of statuses for only **in-progress** tasks, please use the [retrieve pending task status list](https://developer.sailpoint.com/docs/api/v2024/get-pending-tasks) endpoint. Possible tasks to be returned: Cloud Account Aggregation, Cloud Group Aggregation, Cloud Process Uncorrelated Accounts, Cloud Refresh Role, Source Application Discovery, AI Agent Aggregation, Cloud Entitlement Import, Cloud Uncorrelated Refresh, Cloud Identity Aggregation, Cloud Attribute Synchronization, Identity Refresh
594
+ * @summary Retrieve task status list
595
+ * @param {TaskManagementV2026ApiGetTaskStatusListRequest} requestParameters Request parameters.
596
+ * @param {*} [axiosOptions] Override http request option.
597
+ * @throws {RequiredError}
598
+ */
599
+ getTaskStatusList(requestParameters?: TaskManagementV2026ApiGetTaskStatusListRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaskStatusV2026>>;
600
+ /**
601
+ * Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
602
+ * @summary Update task status by id
603
+ * @param {TaskManagementV2026ApiUpdateTaskStatusRequest} requestParameters Request parameters.
604
+ * @param {*} [axiosOptions] Override http request option.
605
+ * @throws {RequiredError}
606
+ */
607
+ updateTaskStatus(requestParameters: TaskManagementV2026ApiUpdateTaskStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaskStatusV2026>;
608
+ };
609
+ /**
610
+ * Request parameters for getPendingTaskHeaders operation in TaskManagementV2026Api.
611
+ * @export
612
+ * @interface TaskManagementV2026ApiGetPendingTaskHeadersRequest
613
+ */
614
+ export interface TaskManagementV2026ApiGetPendingTaskHeadersRequest {
615
+ /**
616
+ * Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
617
+ * @type {number}
618
+ * @memberof TaskManagementV2026ApiGetPendingTaskHeaders
619
+ */
620
+ readonly offset?: number;
621
+ /**
622
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
623
+ * @type {number}
624
+ * @memberof TaskManagementV2026ApiGetPendingTaskHeaders
625
+ */
626
+ readonly limit?: number;
627
+ /**
628
+ * If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
629
+ * @type {boolean}
630
+ * @memberof TaskManagementV2026ApiGetPendingTaskHeaders
631
+ */
632
+ readonly count?: boolean;
633
+ /**
634
+ * Use this header to enable this experimental API.
635
+ * @type {string}
636
+ * @memberof TaskManagementV2026ApiGetPendingTaskHeaders
637
+ */
638
+ readonly xSailPointExperimental?: string;
639
+ }
640
+ /**
641
+ * Request parameters for getPendingTasks operation in TaskManagementV2026Api.
642
+ * @export
643
+ * @interface TaskManagementV2026ApiGetPendingTasksRequest
644
+ */
645
+ export interface TaskManagementV2026ApiGetPendingTasksRequest {
646
+ /**
647
+ * Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
648
+ * @type {number}
649
+ * @memberof TaskManagementV2026ApiGetPendingTasks
650
+ */
651
+ readonly offset?: number;
652
+ /**
653
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
654
+ * @type {number}
655
+ * @memberof TaskManagementV2026ApiGetPendingTasks
656
+ */
657
+ readonly limit?: number;
658
+ /**
659
+ * If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
660
+ * @type {boolean}
661
+ * @memberof TaskManagementV2026ApiGetPendingTasks
662
+ */
663
+ readonly count?: boolean;
664
+ /**
665
+ * Use this header to enable this experimental API.
666
+ * @type {string}
667
+ * @memberof TaskManagementV2026ApiGetPendingTasks
668
+ */
669
+ readonly xSailPointExperimental?: string;
670
+ }
671
+ /**
672
+ * Request parameters for getTaskStatus operation in TaskManagementV2026Api.
673
+ * @export
674
+ * @interface TaskManagementV2026ApiGetTaskStatusRequest
675
+ */
676
+ export interface TaskManagementV2026ApiGetTaskStatusRequest {
677
+ /**
678
+ * Task ID.
679
+ * @type {string}
680
+ * @memberof TaskManagementV2026ApiGetTaskStatus
681
+ */
682
+ readonly id: string;
683
+ /**
684
+ * Use this header to enable this experimental API.
685
+ * @type {string}
686
+ * @memberof TaskManagementV2026ApiGetTaskStatus
687
+ */
688
+ readonly xSailPointExperimental?: string;
689
+ }
690
+ /**
691
+ * Request parameters for getTaskStatusList operation in TaskManagementV2026Api.
692
+ * @export
693
+ * @interface TaskManagementV2026ApiGetTaskStatusListRequest
694
+ */
695
+ export interface TaskManagementV2026ApiGetTaskStatusListRequest {
696
+ /**
697
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
698
+ * @type {number}
699
+ * @memberof TaskManagementV2026ApiGetTaskStatusList
700
+ */
701
+ readonly limit?: number;
702
+ /**
703
+ * Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
704
+ * @type {number}
705
+ * @memberof TaskManagementV2026ApiGetTaskStatusList
706
+ */
707
+ readonly offset?: number;
708
+ /**
709
+ * If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
710
+ * @type {boolean}
711
+ * @memberof TaskManagementV2026ApiGetTaskStatusList
712
+ */
713
+ readonly count?: boolean;
714
+ /**
715
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **sourceId**: *eq, in* **completionStatus**: *eq, in* **type**: *eq, in*
716
+ * @type {string}
717
+ * @memberof TaskManagementV2026ApiGetTaskStatusList
718
+ */
719
+ readonly filters?: string;
720
+ /**
721
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created**
722
+ * @type {string}
723
+ * @memberof TaskManagementV2026ApiGetTaskStatusList
724
+ */
725
+ readonly sorters?: string;
726
+ /**
727
+ * Use this header to enable this experimental API.
728
+ * @type {string}
729
+ * @memberof TaskManagementV2026ApiGetTaskStatusList
730
+ */
731
+ readonly xSailPointExperimental?: string;
732
+ }
733
+ /**
734
+ * Request parameters for updateTaskStatus operation in TaskManagementV2026Api.
735
+ * @export
736
+ * @interface TaskManagementV2026ApiUpdateTaskStatusRequest
737
+ */
738
+ export interface TaskManagementV2026ApiUpdateTaskStatusRequest {
739
+ /**
740
+ * Task ID.
741
+ * @type {string}
742
+ * @memberof TaskManagementV2026ApiUpdateTaskStatus
743
+ */
744
+ readonly id: string;
745
+ /**
746
+ * The JSONPatch payload used to update the object.
747
+ * @type {Array<JsonPatchOperationV2026>}
748
+ * @memberof TaskManagementV2026ApiUpdateTaskStatus
749
+ */
750
+ readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
751
+ /**
752
+ * Use this header to enable this experimental API.
753
+ * @type {string}
754
+ * @memberof TaskManagementV2026ApiUpdateTaskStatus
755
+ */
756
+ readonly xSailPointExperimental?: string;
757
+ }
758
+ /**
759
+ * TaskManagementV2026Api - object-oriented interface
760
+ * @export
761
+ * @class TaskManagementV2026Api
762
+ * @extends {BaseAPI}
763
+ */
764
+ export declare class TaskManagementV2026Api extends BaseAPI {
765
+ /**
766
+ * Responds with headers only for list of task statuses for pending tasks.
767
+ * @summary Retrieve pending task list headers
768
+ * @param {TaskManagementV2026ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
769
+ * @param {*} [axiosOptions] Override http request option.
770
+ * @throws {RequiredError}
771
+ * @memberof TaskManagementV2026Api
772
+ */
773
+ getPendingTaskHeaders(requestParameters?: TaskManagementV2026ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
774
+ /**
775
+ * Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned. Possible tasks to be returned: Cloud Account Aggregation, Cloud Group Aggregation, Cloud Process Uncorrelated Accounts, Cloud Refresh Role, Source Application Discovery, AI Agent Aggregation, Cloud Entitlement Import, Cloud Uncorrelated Refresh, Cloud Identity Aggregation, Cloud Attribute Synchronization, Identity Refresh
776
+ * @summary Retrieve pending task status list
777
+ * @param {TaskManagementV2026ApiGetPendingTasksRequest} requestParameters Request parameters.
778
+ * @param {*} [axiosOptions] Override http request option.
779
+ * @throws {RequiredError}
780
+ * @memberof TaskManagementV2026Api
781
+ */
782
+ getPendingTasks(requestParameters?: TaskManagementV2026ApiGetPendingTasksRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskStatusV2026[], any>>;
783
+ /**
784
+ * Get task status by task ID. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
785
+ * @summary Get task status by id
786
+ * @param {TaskManagementV2026ApiGetTaskStatusRequest} requestParameters Request parameters.
787
+ * @param {*} [axiosOptions] Override http request option.
788
+ * @throws {RequiredError}
789
+ * @memberof TaskManagementV2026Api
790
+ */
791
+ getTaskStatus(requestParameters: TaskManagementV2026ApiGetTaskStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskStatusV2026, any>>;
792
+ /**
793
+ * Use this endpoint to get a list of statuses for **all** tasks which include finished, in-progress, terminated, and errored tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned. To get a list of statuses for only **in-progress** tasks, please use the [retrieve pending task status list](https://developer.sailpoint.com/docs/api/v2024/get-pending-tasks) endpoint. Possible tasks to be returned: Cloud Account Aggregation, Cloud Group Aggregation, Cloud Process Uncorrelated Accounts, Cloud Refresh Role, Source Application Discovery, AI Agent Aggregation, Cloud Entitlement Import, Cloud Uncorrelated Refresh, Cloud Identity Aggregation, Cloud Attribute Synchronization, Identity Refresh
794
+ * @summary Retrieve task status list
795
+ * @param {TaskManagementV2026ApiGetTaskStatusListRequest} requestParameters Request parameters.
796
+ * @param {*} [axiosOptions] Override http request option.
797
+ * @throws {RequiredError}
798
+ * @memberof TaskManagementV2026Api
799
+ */
800
+ getTaskStatusList(requestParameters?: TaskManagementV2026ApiGetTaskStatusListRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskStatusV2026[], any>>;
801
+ /**
802
+ * Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
803
+ * @summary Update task status by id
804
+ * @param {TaskManagementV2026ApiUpdateTaskStatusRequest} requestParameters Request parameters.
805
+ * @param {*} [axiosOptions] Override http request option.
806
+ * @throws {RequiredError}
807
+ * @memberof TaskManagementV2026Api
808
+ */
809
+ updateTaskStatus(requestParameters: TaskManagementV2026ApiUpdateTaskStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskStatusV2026, any>>;
810
+ }