List Reviewer Infos
Get all reviewers and details by certification
Method
syntax
GET
/api/preview/awf/certifications/{certification_id}/reviewer_infos
Returns information about all users assigned to a certification and its results. This will include the users' email and ID, along with their progress on the certification (row_stats
listing actions counts by type).
Parameters
Name
Type
Description
Req.
certification_id
string
ID of a workflow certification
Y
Examples
Request
curl 'https://{{VezaURL}}/api/preview/awf/certifications/abe5c346-84ad-49b0-bafc-614a8365c883/reviewer_infos' \
-H 'authorization: Bearer '$TOKEN
Response
A successful response returns AccessReviewerInfo objects within a values
array:
{
"values": [
{
"reviewer": {
"user_type": "localCookieUser",
"id": "dcadfc95-29f5-4130-b715-5476d40a5811",
"email": "reviewer@veza.com",
"name": "Access Reviewer"
},
"row_stats": {
"total": "1",
"no_decision": "0",
"accepted": "1",
"rejected": "0",
"fixed": "0",
"signed_off": "1"
}
}
]
}
Last updated
Was this helpful?