Files
developer.sailpoint.com/api-specs/idn/beta/paths/campaign-admin-cert-reassign.yaml
github-actions[bot] 44504ff0ab Deploy to GitHub pages
2023-07-24 14:20:28 +00:00

53 lines
1.5 KiB
YAML

post:
security:
- oauth2: [ idn:certification:write ]
operationId: move
tags:
- Certification Campaigns
summary: Reassign Certifications
description: >-
This API reassigns the specified certifications from one identity to another. A token with ORG_ADMIN or CERT_ADMIN
authority is required to call this API.
deprecated: true
parameters:
- in: path
name: id
schema:
type: string
required: true
description: The certification campaign ID
example: ef38f94347e94562b5bb8424a56397d8
requestBody:
required: true
content:
application/json:
schema:
$ref: '../schemas/AdminReviewReassign.yaml'
responses:
'202':
description: The reassign task that has been submitted.
content:
application/json:
schema:
$ref: '../schemas/CertificationTask.yaml'
example:
id: 2c918086719eec070171a7e3355a360a
type: ADMIN_REASSIGN
targetType: CAMPAIGN
targetId: 2c918086719eec070171a7e3355a834c
status: QUEUED
errors: []
created: '2020-09-24T18:10:47.693Z'
'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'