PUT api/Admission/UpdateAdmission
Request Information
URI Parameters
None.
Body Parameters
AdmissionBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| admissionId | integer |
None. |
|
| studentName | string |
None. |
|
| studentAddress | string |
None. |
|
| studentMobileNo | string |
None. |
|
| studentAge | decimal number |
None. |
|
| studentGender | string |
None. |
|
| emailId | string |
None. |
|
| dob | date |
None. |
|
| active | boolean |
None. |
|
| classId | integer |
None. |
|
| className | string |
None. |
|
| dobString | string |
None. |
|
| userId | integer |
None. |
|
| userFullName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"admissionId": 1,
"studentName": "sample string 2",
"studentAddress": "sample string 3",
"studentMobileNo": "sample string 4",
"studentAge": 1.1,
"studentGender": "sample string 5",
"emailId": "sample string 6",
"dob": "2025-12-10T08:56:40.1670319+05:30",
"active": true,
"classId": 1,
"className": "sample string 7",
"dobString": "sample string 8",
"userId": 1,
"userFullName": "sample string 9"
}
application/xml, text/xml
Sample:
<AdmissionBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sangeet_vidyalay_api.Models"> <active>true</active> <admissionId>1</admissionId> <classId>1</classId> <className>sample string 7</className> <dob>2025-12-10T08:56:40.1670319+05:30</dob> <dobString>sample string 8</dobString> <emailId>sample string 6</emailId> <studentAddress>sample string 3</studentAddress> <studentAge>1.1</studentAge> <studentGender>sample string 5</studentGender> <studentMobileNo>sample string 4</studentMobileNo> <studentName>sample string 2</studentName> <userFullName>sample string 9</userFullName> <userId>1</userId> </AdmissionBindingModel>
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.