mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 12:27:47 +00:00
84 lines
2.1 KiB
YAML
84 lines
2.1 KiB
YAML
#
|
|
# Copyright (C) 2019-2020 SailPoint Technologies, Inc. All rights reserved.
|
|
#
|
|
get:
|
|
tags:
|
|
- Task Management
|
|
summary: Retrieve a pending task list.
|
|
description: Retrieve a list of TaskStatus for pending tasks.
|
|
operationId: getPendingTasks
|
|
parameters:
|
|
- $ref: '../../v3/parameters/offset.yaml'
|
|
- $ref: '../../v3/parameters/limit.yaml'
|
|
- $ref: '../../v3/parameters/count.yaml'
|
|
- name: sorters
|
|
in: query
|
|
description: sort criteria
|
|
required: false
|
|
style: form
|
|
explode: true
|
|
schema:
|
|
type: string
|
|
- name: filters
|
|
in: query
|
|
description: filter criteria
|
|
required: false
|
|
style: form
|
|
explode: true
|
|
schema:
|
|
type: string
|
|
responses:
|
|
"200":
|
|
description: Responds with a list of TaskStatus for pending tasks.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: array
|
|
items:
|
|
$ref: '../schemas/TaskStatus.yaml'
|
|
"204":
|
|
$ref: '../../v3/responses/204.yaml'
|
|
"400":
|
|
$ref: '../../v3/responses/400.yaml'
|
|
"403":
|
|
$ref: '../../v3/responses/403.yaml'
|
|
security:
|
|
- oauth2: [idn:task-management:read]
|
|
head:
|
|
tags:
|
|
- Task Management
|
|
summary: Retrieve headers only for pending task list.
|
|
description: Retrieve headers for a list of TaskStatus for pending tasks.
|
|
operationId: getPendingTaskHeaders
|
|
parameters:
|
|
- $ref: '../../v3/parameters/offset.yaml'
|
|
- $ref: '../../v3/parameters/limit.yaml'
|
|
- $ref: '../../v3/parameters/count.yaml'
|
|
- name: sorters
|
|
in: query
|
|
description: sort criteria
|
|
required: false
|
|
style: form
|
|
explode: true
|
|
schema:
|
|
type: string
|
|
- name: filters
|
|
in: query
|
|
description: filter criteria
|
|
required: false
|
|
style: form
|
|
explode: true
|
|
schema:
|
|
type: string
|
|
responses:
|
|
"200":
|
|
description: Responds with headers for List of TaskStatus for pending tasks.
|
|
"204":
|
|
$ref: '../../v3/responses/204.yaml'
|
|
"400":
|
|
$ref: '../../v3/responses/400.yaml'
|
|
"403":
|
|
$ref: '../../v3/responses/403.yaml'
|
|
security:
|
|
- oauth2: [idn:task-management:read]
|