Get All Course Results for All Users In a Date Range
Get a list of all updated course results for all Users within a specified date range.
Mandatory query string parameter:
“&since={YYYY-MM-DD HH:MM:SS}&to={YYYY-MM-DD HH:MM:SS}” – The parameter must be included and can specify a date range of up to a maximum of 7 days. The call will fail to return any results if the parameters are not included.
Important Note: This API previously supported the use of the “&since={YYYY-MM-DD HH:MM:SS}” parameter by itself, which allowed customers to query all updated course results for all users from any given date in the past. However, that ability has been deprecated as of August 20th, 2021. The mandatory query string parameter which enforces a 7 day date range maximum standardizes the query behavior with other API calls that use delta queries to fetch record changes over a range of time. Clients can still fetch records from a decade ago, but those records must be fetched in intervals and it is recommended to store those records for reference.
Request URI
GET /org/results/details?&source={source}&since={YYYY-MM-DD HH:MM:SS}&to={YYYY-MM-DD HH:MM:SS}
Response Body (XML)
<Users> <User> <Id>string [max length 50]</Id> <UserOriginalId>integer</UserOriginalId> <Username>string [max length 50]</Username> <FirstName>string [max length 255]</FirstName> <LastName>string [max length 255]</LastName> <Active>true/false</Active> <Email>string [max length 255]</Email> <AccessLevel>string</AccessLevel> <LoginKey>string [max length 512]</LoginKey> <CourseId>string [max length 50]</CourseId> <CourseOriginalId>string [max length 50]</CourseOriginalId> <UpdatedDate>YYYY-MM-DDTHH:MM:SS.SSS</UpdatedDate> <Code>string[max length 255]</Code> <CourseName>string[max length 2255</CourseName> <Complete>true/false</Complete> <PercentageComplete>decimal</PercentageComplete> <CompletedDate>YYYY-MM-DDTHH:MM:SSS</CompletedDate> <UpToDate>true/false</UpToDate> <Overdue>true/false</Overdue> <CompliantTillDate>YYYY-MM-DDTHH:MM:SSS</CompliantTillDate> </User> <User> ... </User> </Users>