Get dashboard data for review requests period widget
GET
/v1/dashboards/{org_uuid}/widgets/review_requests/period
Get the counters for review requests with a specific status in the given period.
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"days
Only select entities in time range (T-days, T).
T the current time by default, or it can be modified with offset_days.
If days is not set, all entities before T are selected.
Typeinteger
offset_days
Shift the selection range offset_days into the past.
For example: days=7, offset_days=7 is the range 14d ago to 7d ago.
Typeinteger
Responses
OK
application/json
JSON
{
"created_total": 0,
"closed_total": 0,
"merged_total": 0,
"reviewed_total": 0
}