Files
api-specs/idn/beta/paths/task-definitions.yaml
GitHub Action Bot 1013fe10a3 Automated commit 'DEVREL-1270 (#1473)
* Fixed sorter/filter descriptions for several endpoints.  Moved beta collection tags into alphabetic order.

* Fixed the remaining sorter/filter linter errors

* Removed default value from sorter params as they are not valid.' by github action: 6708027043
2023-10-31 14:33:08 +00:00

31 lines
914 B
YAML

#
# Copyright (C) 2019-2020 SailPoint Technologies, Inc. All rights reserved.
#
get:
tags:
- Task Management
summary: Retrieve a task definition summary list.
description: Get a list of TaskDefinitionSummary.
operationId: getTaskDefinitionSummaryList
parameters:
- $ref: '../../v3/parameters/offset.yaml'
- $ref: '../../v3/parameters/limit.yaml'
- $ref: '../../v3/parameters/count.yaml'
responses:
"200":
description: Response is a list of TaskDefinitionSumary results matching the criteria.
content:
application/json:
schema:
type: array
items:
$ref: '../schemas/TaskDefinitionSummary.yaml'
"204":
$ref: '../../v3/responses/204.yaml'
"400":
$ref: '../../v3/responses/400.yaml'
"403":
$ref: '../../v3/responses/403.yaml'
security:
- UserContextAuth: [idn:task-definition:read]