GET results/group
Fetches a list of results from the organisation for a specific group.
URL
Parameters
URL Parameters
Group Id
*
* required
Query Parameters
startDate
string
Show only results after the date specified. Date is converted to a DateTimeOffset
and supports specifying a time zone. ISO 8601 format is recommended.
endDate
string
Show only results before the date specified. Date is converted to a DateTimeOffset
and supports specifying a time zone. ISO 8601 format is recommended.
reportingFilters
string[]
page
integer
The page of results to select. Defaults to the first page. 50 results are returned per page.
Responses
200 - OK
A list of results from the database. List may be empty if no results are found for the specified parameters.
entities
array
The list of the results returned.
┃ groupId
string
The Id of the group specified in Group Id
. Formatted as a GUID.
┃ courseId
string
The Id of the course this aggregate is for. Formatted as a GUID.
┃ completions
integer
The number of results in the aggregate.
┃ score
double
The average score of all results in the aggregate.
┃ maximumScore
integer
The maximum score achievable for the course.
â”— courseType
string
The type of the course. (SINGLE_COURSE
or MULTI_COURSE
)
page
integer
The current page of results (Starts at 1).
entitiesReturned
integer
The number of courses in the entities
array.
totalEntities
integer
The total entities
across all pages for the current parameters.
links
array
A list of links relevant to the current request. No links are currently returned with this request.
┃ type
string
The type of the given link (e.g. Next Page, Previous Page).
┃ href
string
The URL to call for the given link.
â”— method
string
The HTTP method to use for the link (e.g. GET, POST).
400 - Bad Request
Error Code: INVALID_GROUP
The group specified with Group Id
could not be found.
Last updated