GET api/users/user/getV5Progress?userId={userId}&courseId={courseId}
Retrieves reforms progress information for a user.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId |
User ID. |
string |
Required |
| courseId |
Course ID. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
ReformsProgressInformation| Name | Description | Type | Additional information |
|---|---|---|---|
| CurrentAbilityEstimate |
Current Ability Estimate |
string |
None. |
| LastResult |
Last Result |
string |
None. |
| CurrentAbilityEstimateName |
Current Ability Estimate Name |
string |
None. |
| LastResultName |
Last Result Name |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"CurrentAbilityEstimate": "sample string 1",
"LastResult": "sample string 2",
"CurrentAbilityEstimateName": "sample string 3",
"LastResultName": "sample string 4"
}
application/xml, text/xml
Sample:
<ReformsProgressInformation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <CurrentAbilityEstimate>sample string 1</CurrentAbilityEstimate> <LastResult>sample string 2</LastResult> <CurrentAbilityEstimateName>sample string 3</CurrentAbilityEstimateName> <LastResultName>sample string 4</LastResultName> </ReformsProgressInformation>
