mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 12:27:48 +00:00
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
post:
|
|
operationId: reassignIdentityCertifications
|
|
tags:
|
|
- Certifications
|
|
summary: Reassign Identities or Items
|
|
description: >-
|
|
This API reassigns up to 50 identities or items in an identity campaign certification to another reviewer. A token
|
|
with ORG_ADMIN or CERT_ADMIN authority is required to call this API. Reviewers for this certification can also call
|
|
this API. This API does not support requests for certifications assigned to Governance Groups.
|
|
parameters:
|
|
- in: path
|
|
name: id
|
|
schema:
|
|
type: string
|
|
required: true
|
|
description: The identity campaign certification ID
|
|
example: 'ef38f94347e94562b5bb8424a56397d8'
|
|
requestBody:
|
|
required: true
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: "../schemas/ReviewReassign.yaml"
|
|
responses:
|
|
'200':
|
|
description: An identity campaign certification details after completing the reassignment.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/IdentityCertificationDto.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'
|