mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 20:37:50 +00:00
ISCCOMPLI-309 : Get Certification Task Status, API Doc migration from beta to v3' by github action: 6182821257
38 lines
1.0 KiB
YAML
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'
|