GET api/Sites/{SiteId}/GradingEvaluationSchedules
Returns the Grading Evaluation Schedules for a Site.
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| SiteId | 
                         Application identifier for the Site  | 
                    globally unique identifier | 
                                 Required  | 
                
Body Parameters
None.
Response Information
Resource Description
Collection of GradingEvaluationSchedule objects for the specified SiteId
Collection of GradingEvaluationSchedule| Name | Description | Type | Additional information | 
|---|---|---|---|
| SiteId | 
                         The application identifier of the Site for the Grading Evaluation Schedule.  | 
                    globally unique identifier | 
                             None.  | 
                
| Name | 
                         The name for the Grading Evaluation Schedule.  | 
                    string | 
                             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
            Sample:
        
[
  {
    "SiteId": "1424bd05-651b-44da-84c4-b1ab358c9608",
    "Name": "sample string 2",
    "Id": "5ff3e2fb-0da1-4b83-bc9f-b871eb11b50e",
    "DataVersion": "sample string 4",
    "ApiName": ""
  },
  {
    "SiteId": "1424bd05-651b-44da-84c4-b1ab358c9608",
    "Name": "sample string 2",
    "Id": "5ff3e2fb-0da1-4b83-bc9f-b871eb11b50e",
    "DataVersion": "sample string 4",
    "ApiName": ""
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfGradingEvaluationSchedule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi.v1">
  <GradingEvaluationSchedule>
    <DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 4</DataVersion>
    <Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">5ff3e2fb-0da1-4b83-bc9f-b871eb11b50e</Id>
    <Name>sample string 2</Name>
    <SiteId>1424bd05-651b-44da-84c4-b1ab358c9608</SiteId>
  </GradingEvaluationSchedule>
  <GradingEvaluationSchedule>
    <DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 4</DataVersion>
    <Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">5ff3e2fb-0da1-4b83-bc9f-b871eb11b50e</Id>
    <Name>sample string 2</Name>
    <SiteId>1424bd05-651b-44da-84c4-b1ab358c9608</SiteId>
  </GradingEvaluationSchedule>
</ArrayOfGradingEvaluationSchedule>