Get all reviewers and details by certification
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).
certification_id
string
ID of a workflow certification
Y
curl 'https://{{VezaURL}}/api/preview/awf/certifications/abe5c346-84ad-49b0-bafc-614a8365c883/reviewer_infos' \
-H 'authorization: Bearer '$TOKEN
A successful response returns AccessReviewerInfo objects within a values
array:
{
"values": [
{
"reviewer": {
"user_type": "localCookieUser",
"id": "dcadfc95-29f5-4130-b715-5476d40a5811",
"email": "[email protected]",
"name": "Access Reviewer"
},
"row_stats": {
"total": "1",
"no_decision": "0",
"accepted": "1",
"rejected": "0",
"fixed": "0",
"signed_off": "1"
}
}
]
}