- Reassign the reviews
- okta.governance.accessCertifications.manage
- ACCESS_CERTIFICATIONS_ADMIN
Reassigns a review to another reviewer.
Reassigning a review is useful in cases where the currently assigned reviewer is not able to make a decision before the campaign ends.
Only reviews belonging to campaigns with a status of READY can be reassigned. And only those reviews with decision UNREVIEWED can be reassigned.
If reviews are currently being reviewed by a group (when reviewerType is GROUP or RESOURCE_OWNER), on reassignment, reviews is directly assigned to the chosen new reviewer and reviewerType is changed to USER.
A valid reassignment changes an existing reviewer to a new reviewer (userId), and appends the change to the reassignment history.
To reassign a set of reviews, you must specify:
the Okta
user.idof the new reviewera list of
reviewIdsto be re-assignedThe
reviewerLevelat which the reviews needs to be re-assigned (Applicable only for multi level campaigns)a
notejustifying the reassignment decision for the specified reviews
The operation payload for reviews reassignment
A list of reviews (review id values) that are reassigned to the new reviewer.
Applicable only for multi level campaigns. The reviewer level at which the reviews should be reassigned.
- Reassign success
- Reassign reviews of multi level campaign by specifying the reviewer level |tooltip| Reassign reviews of multi level campaign. One can reassign by specifying the reviewer level at which reviews should be reassigned
curl -i -X POST \
'https://subdomain.okta.com/governance/api/v1/campaigns/{campaignId}/reviews/reassign' \
-H 'Content-Type: application/json' \
-d '{
"reviewerId": "00u31c7qMRUfrhdew0g4",
"reviewIds": [
"icrhdk4Lwhd2bBRQe0g2",
"icrhew4DFTxygUUgE0g2",
"icrhfvRCfGCHk3y2h0g2"
],
"note": "John Smith is on leave for this month. His manager Tim will be the reviewer instead."
}'- List of reviews after reassigning to a new reviewer |tooltip| The list of reviews that are reassigned.
- List of reviews that were originally assigned to reviewer group got reassigned |tooltip| The list of reviews that were originally assigned to a reviewer group. After reassignment, they are directly assigned to a specific reviewer and `reviewerType` is changed to `USER`.
- List of reviews that were originally assigned to reviewer group at level 1 |tooltip| The list of reviews that were originally assigned to a reviewer group at `reviewerLevel = ONE`. After reassignment, they are directly assigned to a specific reviewer and `reviewerType` is changed to `USER`.
- Multi level campaign - success response to get a review details with details at all reviewer levels |tooltip| For a multi level campaign, a success response to get a review details. It also includes detailed information of decisions, reviewers involved in making those decisions at each reviewer level.
{ "data": [ { … }, { … }, { … } ], "_links": { "reviews": { … }, "self": { … } } }