GET GradesGeneralCommentsAPI/GetGradesGeneralCommentsByGradeSessionIDPkCourseSectionIDForGrading?gradesessionid={gradesessionid}&pkcoursesectionid={pkcoursesectionid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| gradesessionid | integer |
Required |
|
| pkcoursesectionid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GradesGeneralComments| Name | Description | Type | Additional information |
|---|---|---|---|
| GeneralCommentID | integer |
None. |
|
| GeneralComment | string |
None. |
|
| GradeSessionID | integer |
None. |
|
| PeopleIDStudent | integer |
None. |
|
| pkCourseSectionID | integer |
None. |
|
| FullName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"GeneralCommentID": 1,
"GeneralComment": "sample string 2",
"GradeSessionID": 3,
"PeopleIDStudent": 4,
"pkCourseSectionID": 5,
"FullName": "sample string 6"
},
{
"GeneralCommentID": 1,
"GeneralComment": "sample string 2",
"GradeSessionID": 3,
"PeopleIDStudent": 4,
"pkCourseSectionID": 5,
"FullName": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfGradesGeneralComments xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QMA2020.Models">
<GradesGeneralComments>
<FullName>sample string 6</FullName>
<GeneralComment>sample string 2</GeneralComment>
<GeneralCommentID>1</GeneralCommentID>
<GradeSessionID>3</GradeSessionID>
<PeopleIDStudent>4</PeopleIDStudent>
<pkCourseSectionID>5</pkCourseSectionID>
</GradesGeneralComments>
<GradesGeneralComments>
<FullName>sample string 6</FullName>
<GeneralComment>sample string 2</GeneralComment>
<GeneralCommentID>1</GeneralCommentID>
<GradeSessionID>3</GradeSessionID>
<PeopleIDStudent>4</PeopleIDStudent>
<pkCourseSectionID>5</pkCourseSectionID>
</GradesGeneralComments>
</ArrayOfGradesGeneralComments>