Files
api-specs/idn/v3/paths/certification-task.yaml
GitHub Action Bot f26e4a476c Automated commit 'Merge pull request #1410 from sailpoint/ishaanv/ISCCOMPLI-309
ISCCOMPLI-309 : Get Certification Task Status, API Doc migration from beta to v3' by github action: 6182821257
2023-09-14 08:21:59 +00:00

38 lines
1.0 KiB
YAML

get:
operationId: getCertificationTask
tags:
- Certifications
summary: Certification Task by ID
description: >-
This API returns the certification task for the specified ID. A token with ORG_ADMIN or CERT_ADMIN authority is
required to call this API. Reviewers for the specified certification can also call this API.
security:
- UserContextAuth: [ idn:certification:read ]
parameters:
- in: path
name: id
schema:
type: string
required: true
description: The task ID
example: 63b32151-26c0-42f4-9299-8898dc1c9daa
responses:
'200':
description: A certification task
content:
application/json:
schema:
$ref: '../schemas/CertificationTask.yaml'
'400':
$ref: '../responses/400.yaml'
'401':
$ref: '../responses/401.yaml'
'403':
$ref: '../responses/403.yaml'
'404':
$ref: '../responses/404.yaml'
'429':
$ref: '../responses/429.yaml'
'500':
$ref: '../responses/500.yaml'