GET api/Sections/{SectionId}/Assignments
Returns the Assignments for a Section.
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| SectionId | 
                         Application identifier for the Section  | 
                    globally unique identifier | 
                                 Required  | 
                
Body Parameters
None.
Response Information
Resource Description
Collection of Assignment objects for the specified SectionId
Collection of Assignment| Name | Description | Type | Additional information | 
|---|---|---|---|
| Title | 
                         The title for the Assignment.  | 
                    string | 
                             None.  | 
                
| Description | 
                         The description for the Assignment.  | 
                    string | 
                             None.  | 
                
| AssignmentTypeId | 
                         The application identifier of the Assignment Type for the Assignment.  | 
                    globally unique identifier | 
                             None.  | 
                
| PossiblePoints | 
                         The possible points for the Assignment.  | 
                    integer | 
                             None.  | 
                
| ScoreMultiplier | 
                         The score multiplier for the Assignment.  | 
                    decimal number | 
                             None.  | 
                
| IncludeInAverage | 
                         The indicator for whether the Assignment's score is included for calculating Student Section Grades.  | 
                    boolean | 
                             None.  | 
                
| AssignedDate | 
                         The assigned date for the Assignment in the Section.  | 
                    date | 
                             None.  | 
                
| DueDate | 
                         The due date for the Assignment in the Section.  | 
                    date | 
                             None.  | 
                
| Id | 
                         The application identifier for the object. This cannot be changed by the user.  | 
                    globally unique identifier | 
                             None.  | 
                
| DataVersion | 
                         The version of the API data  | 
                    string | 
                             None.  | 
                
| ApiName | 
                         The name of the object without the Api suffix  | 
                    string | 
                             None.  | 
                
Response Formats
application/json, text/json
[
  {
    "Title": "sample string 1",
    "Description": "sample string 2",
    "AssignmentTypeId": "c0375c7c-0e33-42a4-a14f-1e3394763102",
    "PossiblePoints": 4,
    "ScoreMultiplier": 5.0,
    "IncludeInAverage": true,
    "AssignedDate": "2025-11-04T09:07:10.5769055-06:00",
    "DueDate": "2025-11-04T09:07:10.5769055-06:00",
    "Id": "8543326a-a6d0-44ea-9f7a-d5e4618c6179",
    "DataVersion": "sample string 10",
    "ApiName": ""
  },
  {
    "Title": "sample string 1",
    "Description": "sample string 2",
    "AssignmentTypeId": "c0375c7c-0e33-42a4-a14f-1e3394763102",
    "PossiblePoints": 4,
    "ScoreMultiplier": 5.0,
    "IncludeInAverage": true,
    "AssignedDate": "2025-11-04T09:07:10.5769055-06:00",
    "DueDate": "2025-11-04T09:07:10.5769055-06:00",
    "Id": "8543326a-a6d0-44ea-9f7a-d5e4618c6179",
    "DataVersion": "sample string 10",
    "ApiName": ""
  }
]
        application/xml, text/xml
<ArrayOfAssignment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi.v1">
  <Assignment>
    <DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 10</DataVersion>
    <Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">8543326a-a6d0-44ea-9f7a-d5e4618c6179</Id>
    <AssignedDate>2025-11-04T09:07:10.5769055-06:00</AssignedDate>
    <AssignmentTypeId>c0375c7c-0e33-42a4-a14f-1e3394763102</AssignmentTypeId>
    <Description>sample string 2</Description>
    <DueDate>2025-11-04T09:07:10.5769055-06:00</DueDate>
    <IncludeInAverage>true</IncludeInAverage>
    <PossiblePoints>4</PossiblePoints>
    <ScoreMultiplier>5</ScoreMultiplier>
    <Title>sample string 1</Title>
  </Assignment>
  <Assignment>
    <DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 10</DataVersion>
    <Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">8543326a-a6d0-44ea-9f7a-d5e4618c6179</Id>
    <AssignedDate>2025-11-04T09:07:10.5769055-06:00</AssignedDate>
    <AssignmentTypeId>c0375c7c-0e33-42a4-a14f-1e3394763102</AssignmentTypeId>
    <Description>sample string 2</Description>
    <DueDate>2025-11-04T09:07:10.5769055-06:00</DueDate>
    <IncludeInAverage>true</IncludeInAverage>
    <PossiblePoints>4</PossiblePoints>
    <ScoreMultiplier>5</ScoreMultiplier>
    <Title>sample string 1</Title>
  </Assignment>
</ArrayOfAssignment>