PUT api/gradingperiods/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

GradingPeriod
NameDescriptionTypeAdditional information
Id

integer

None.

Department

integer

None.

Description

string

None.

StartDate

date

None.

EndDate

date

None.

TermID

integer

None.

LowestPossibleGrade

decimal number

None.

Percentage

decimal number

None.

PaymentNumber

integer

None.

OrderBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "department": 2,
  "description": "sample string 3",
  "startDate": "2024-09-20T02:04:05.9218134+08:00",
  "endDate": "2024-09-20T02:04:05.9218134+08:00",
  "termID": 6,
  "lowestPossibleGrade": 7.1,
  "percentage": 8.1,
  "paymentNumber": 9,
  "orderBy": 10
}

text/html

Sample:
{"id":1,"department":2,"description":"sample string 3","startDate":"2024-09-20T02:04:05.9218134+08:00","endDate":"2024-09-20T02:04:05.9218134+08:00","termID":6,"lowestPossibleGrade":7.1,"percentage":8.1,"paymentNumber":9,"orderBy":10}

application/xml, text/xml

Sample:
<GradingPeriod xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <Department>2</Department>
  <Description>sample string 3</Description>
  <EndDate>2024-09-20T02:04:05.9218134+08:00</EndDate>
  <Id>1</Id>
  <LowestPossibleGrade>7.1</LowestPossibleGrade>
  <OrderBy>10</OrderBy>
  <PaymentNumber>9</PaymentNumber>
  <Percentage>8.1</Percentage>
  <StartDate>2024-09-20T02:04:05.9218134+08:00</StartDate>
  <TermID>6</TermID>
</GradingPeriod>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.