POST api/ExamType

Request Information

URI Parameters

None.

Body Parameters

ExamType
NameDescriptionTypeAdditional 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-04-29T09:37:51.7071189+00:00",
  "UpdatedOn": "2024-04-29T09:37:51.7071189+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-04-29T09:37:51.7071189+00:00</CreatedOn>
  <ExamTypeName>sample string 2</ExamTypeName>
  <IsDeleted>true</IsDeleted>
  <ParentExamName>sample string 3</ParentExamName>
  <PlanAmount>6</PlanAmount>
  <RecordNo>1</RecordNo>
  <UpdatedOn>2024-04-29T09:37:51.7071189+00:00</UpdatedOn>
</ExamType>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ExamType'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.