mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 20:37:50 +00:00
ISCCOMPLI-310 : Get Pending Certification Tasks, API Doc migration from beta to v3' by github action: 6315618966
64 lines
1.8 KiB
YAML
64 lines
1.8 KiB
YAML
get:
|
|
operationId: getPendingCertificationTasks
|
|
tags:
|
|
- Certifications
|
|
- Certification Campaigns
|
|
summary: List of Pending Certification Tasks
|
|
deprecated: true
|
|
description: >-
|
|
This API returns a list of pending (`QUEUED` or `IN_PROGRESS`) certification tasks. Any authenticated token can call
|
|
this API, but only certification tasks you are authorized to review will be returned.
|
|
security:
|
|
- UserContextAuth: [ idn:certification:read ]
|
|
parameters:
|
|
- in: query
|
|
name: reviewer-identity
|
|
schema:
|
|
type: string
|
|
example: Ada.1de82e55078344
|
|
description: The ID of reviewer identity. *me* indicates the current user.
|
|
required: false
|
|
- $ref: '../../v3/parameters/limit.yaml'
|
|
- $ref: '../../v3/parameters/offset.yaml'
|
|
- $ref: '../../v3/parameters/count.yaml'
|
|
- in: query
|
|
name: filters
|
|
schema:
|
|
type: string
|
|
example: type eq "ADMIN_REASSIGN"
|
|
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*
|
|
|
|
|
|
**targetId**: *eq, in*
|
|
|
|
|
|
**type**: *eq, in*
|
|
responses:
|
|
'200':
|
|
description: A list of pending certification tasks
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: array
|
|
items:
|
|
$ref: '../../beta/schemas/CertificationTask.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'
|