PUT api/classroom/section/classes/{classId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| classId | integer |
Required |
Body Parameters
ClassroomClassDto| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| className | string |
None. |
|
| division | string |
None. |
|
| totalFees | decimal number |
None. |
|
| paidFees | decimal number |
None. |
|
| totalStudents | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"className": "sample string 1",
"division": "sample string 2",
"totalFees": 3.0,
"paidFees": 4.0,
"totalStudents": 5
}
application/xml, text/xml
Sample:
<ClassroomClassDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoapToRestAPI.Controllers"> <className>sample string 1</className> <division>sample string 2</division> <id>1</id> <paidFees>4</paidFees> <totalFees>3</totalFees> <totalStudents>5</totalStudents> </ClassroomClassDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.