POST api/ExamType
Request Information
URI Parameters
None.
Body Parameters
ExamTypeName | Description | Type | Additional information |
---|---|---|---|
RecordNo | integer |
None. |
|
ExamTypeName | string |
None. |
|
ParentExamName | string |
None. |
|
CreatedOn | date |
None. |
|
UpdatedOn | date |
None. |
|
IsDeleted | boolean |
None. |
|
PlanAmount | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "RecordNo": 1, "ExamTypeName": "sample string 2", "ParentExamName": "sample string 3", "CreatedOn": "2024-12-21T22:37:31.1972248+00:00", "UpdatedOn": "2024-12-21T22:37:31.1972248+00:00", "IsDeleted": true, "PlanAmount": 6.0 }
application/xml, text/xml
Sample:
<ExamType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrishAcademy.Models"> <CreatedOn>2024-12-21T22:37:31.1972248+00:00</CreatedOn> <ExamTypeName>sample string 2</ExamTypeName> <IsDeleted>true</IsDeleted> <ParentExamName>sample string 3</ParentExamName> <PlanAmount>6</PlanAmount> <RecordNo>1</RecordNo> <UpdatedOn>2024-12-21T22:37:31.1972248+00:00</UpdatedOn> </ExamType>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.