GET api/GetGradesList?siteId={siteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GradesList| Name | Description | Type | Additional information |
|---|---|---|---|
| GradeId | integer |
None. |
|
| GradeCd | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"GradeId": 1,
"GradeCd": "sample string 1"
},
{
"GradeId": 1,
"GradeCd": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfGradesList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.Primero.OnlineFRE.APIs.Models.Students">
<GradesList>
<GradeCd>sample string 1</GradeCd>
<GradeId>1</GradeId>
</GradesList>
<GradesList>
<GradeCd>sample string 1</GradeCd>
<GradeId>1</GradeId>
</GradesList>
</ArrayOfGradesList>