-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated commit 'Merge pull request #1381 from sailpoint/karthikj/id…
…ndenali-7705 IDNDENALI-7705: Create taskman GET /v3/task-status and it should accept filtering' by github action: 6089577646
- Loading branch information
1 parent
70a94ff
commit 9700032
Showing
5 changed files
with
91 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# | ||
# Copyright (C) 2023 SailPoint Technologies, Inc. All rights reserved. | ||
# | ||
get: | ||
tags: | ||
- Task Management | ||
summary: Retrieve a task status list. | ||
description: Get a TaskStatus list. | ||
operationId: getTaskStatusList | ||
parameters: | ||
- $ref: '../../v3/parameters/limit.yaml' | ||
- $ref: '../../v3/parameters/offset.yaml' | ||
- $ref: '../../v3/parameters/count.yaml' | ||
- in: query | ||
name: filters | ||
schema: | ||
type: string | ||
example: completionStatus eq "Success" | ||
required: false | ||
description: >- | ||
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* | ||
**schedule**: *eq, in* | ||
- in: query | ||
name: sorters | ||
schema: | ||
type: string | ||
format: comma-separated | ||
example: -created | ||
required: false | ||
description: >- | ||
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** | ||
responses: | ||
"200": | ||
description: Responds with a TaskStatus for the task with the given task ID. | ||
content: | ||
application/json: | ||
schema: | ||
type: array | ||
items: | ||
$ref: '../schemas/TaskStatus.yaml' | ||
'400': | ||
$ref: '../../v3/responses/400.yaml' | ||
'401': | ||
$ref: '../../v3/responses/401.yaml' | ||
'403': | ||
$ref: '../../v3/responses/403.yaml' | ||
'404': | ||
$ref: '../../v3/responses/404.yaml' | ||
'429': | ||
$ref: '../../v3/responses/429.yaml' | ||
'500': | ||
$ref: '../../v3/responses/500.yaml' | ||
security: | ||
- oauth2: [idn:task-management:read] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters