PUT api/gradingperiods/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
GradingPeriodName | Description | Type | Additional 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": "2025-04-26T21:23:22.5235711+08:00", "endDate": "2025-04-26T21:23:22.5235711+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":"2025-04-26T21:23:22.5235711+08:00","endDate":"2025-04-26T21:23:22.5235711+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>2025-04-26T21:23:22.5235711+08:00</EndDate> <Id>1</Id> <LowestPossibleGrade>7.1</LowestPossibleGrade> <OrderBy>10</OrderBy> <PaymentNumber>9</PaymentNumber> <Percentage>8.1</Percentage> <StartDate>2025-04-26T21:23:22.5235711+08:00</StartDate> <TermID>6</TermID> </GradingPeriod>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.