GET restapi/personal/progressreport/criteria/v1?courseId={courseId}&learningObjectiveId={learningObjectiveId}
Gets the criteria list for learning objective at specified course.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
courseId |
The course identifier. |
integer |
Required |
learningObjectiveId |
The learning objective repository identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Itslearning.RestApi.Entities.CriteriaAssessmentReport.CriterionName | Description | Type | Additional information |
---|---|---|---|
Id |
The criteria id. |
integer |
None. |
Title |
The criteria title. |
string |
None. |
Description |
The criteria description. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "Title": "sample string 2", "Description": "sample string 3" }, { "Id": 1, "Title": "sample string 2", "Description": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfCriterion xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Criterion> <Description>sample string 3</Description> <Id>1</Id> <Title>sample string 2</Title> </Criterion> <Criterion> <Description>sample string 3</Description> <Id>1</Id> <Title>sample string 2</Title> </Criterion> </ArrayOfCriterion>