Get dashboard data for review requests widget
GET
/v1/dashboards/{org_uuid}/widgets/review_requests
Get the counters for review requests grouped by status.
Access
- Only members of the organization with any role are allowed to query.
Authorizations
apiKey
API key as username in Basic Authorization with
empty password.
TypeAPI Key (header: Authorization)
or
jwtToken
TypeHTTP (bearer)
Parameters
Path Parameters
org_uuid*
UUID of the organization
Typestring
Requiredformat
"uuid"Query Parameters
user_uuid
Only return stats related to this user uuid.
Typestring
format
"uuid"Responses
OK
application/json
JSON
{
"total": 0,
"draft_total": 0,
"open_total": 0,
"review_required_total": 0,
"changes_requested_total": 0,
"approved_total": 0,
"merged_total": 0,
"closed_total": 0
}