PUT api/grades/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

Grades
NameDescriptionTypeAdditional information
Id

integer

None.

SSID

integer

None.

StudentID

integer

None.

TermID

integer

None.

Grading

integer

None.

Grade

string

String length: inclusive between 0 and 10

Status

string

String length: inclusive between 0 and 1

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "ssid": 2,
  "studentID": 3,
  "termID": 4,
  "grading": 5,
  "grade": "sample string 6",
  "status": "sample string 7"
}

text/html

Sample:
{"id":1,"ssid":2,"studentID":3,"termID":4,"grading":5,"grade":"sample string 6","status":"sample string 7"}

application/xml, text/xml

Sample:
<Grades xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <Grade>sample string 6</Grade>
  <Grading>5</Grading>
  <Id>1</Id>
  <SSID>2</SSID>
  <Status>sample string 7</Status>
  <StudentID>3</StudentID>
  <TermID>4</TermID>
</Grades>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.