GET api/GradeBookAssignmentStandards/{id}
Get all Standards associated with a single assignment.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The Gradebook Assignment Primary Key. (GradeBookAssignmentId) |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Get all Standards associated with a single assignment.
Collection of QWebAPIGradeBookAssignmentStandardsResult| Name | Description | Type | Additional information |
|---|---|---|---|
| GradeBookAssignmentId | integer |
None. |
|
| CourseStandardId | integer |
None. |
|
| StandardUnique | integer |
None. |
|
| MarkSetCode | string |
None. |
|
| ShortDesc | string |
None. |
|
| StdDescription | string |
None. |
|
| StdNote | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"GradeBookAssignmentId": 1,
"CourseStandardId": 2,
"StandardUnique": 3,
"MarkSetCode": "sample string 4",
"ShortDesc": "sample string 5",
"StdDescription": "sample string 6",
"StdNote": "sample string 7"
},
{
"GradeBookAssignmentId": 1,
"CourseStandardId": 2,
"StandardUnique": 3,
"MarkSetCode": "sample string 4",
"ShortDesc": "sample string 5",
"StdDescription": "sample string 6",
"StdNote": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfQWebAPIGradeBookAssignmentStandardsResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<QWebAPIGradeBookAssignmentStandardsResult>
<GradeBookAssignmentId>1</GradeBookAssignmentId>
<CourseStandardId>2</CourseStandardId>
<StandardUnique>3</StandardUnique>
<MarkSetCode>sample string 4</MarkSetCode>
<ShortDesc>sample string 5</ShortDesc>
<StdDescription>sample string 6</StdDescription>
<StdNote>sample string 7</StdNote>
</QWebAPIGradeBookAssignmentStandardsResult>
<QWebAPIGradeBookAssignmentStandardsResult>
<GradeBookAssignmentId>1</GradeBookAssignmentId>
<CourseStandardId>2</CourseStandardId>
<StandardUnique>3</StandardUnique>
<MarkSetCode>sample string 4</MarkSetCode>
<ShortDesc>sample string 5</ShortDesc>
<StdDescription>sample string 6</StdDescription>
<StdNote>sample string 7</StdNote>
</QWebAPIGradeBookAssignmentStandardsResult>
</ArrayOfQWebAPIGradeBookAssignmentStandardsResult>