POST api/fee/insertfee

Request Information

URI Parameters

None.

Body Parameters

FeeMaster
NameDescriptionTypeAdditional information
FeeMasterId

integer

None.

FeeTitle

string

None.

CreatedDate

date

None.

ModifiedDate

date

None.

CreatedBy

integer

None.

ModifiedBy

integer

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "FeeMasterId": 1,
  "FeeTitle": "sample string 2",
  "CreatedDate": "2025-06-24T13:00:40.5364834+00:00",
  "ModifiedDate": "2025-06-24T13:00:40.5364834+00:00",
  "CreatedBy": 1,
  "ModifiedBy": 1,
  "IsActive": true,
  "IsDeleted": true
}

text/html

Sample:
{"FeeMasterId":1,"FeeTitle":"sample string 2","CreatedDate":"2025-06-24T13:00:40.5364834+00:00","ModifiedDate":"2025-06-24T13:00:40.5364834+00:00","CreatedBy":1,"ModifiedBy":1,"IsActive":true,"IsDeleted":true}

application/xml, text/xml

Sample:
<FeeMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SRG.Core">
  <CreatedBy>1</CreatedBy>
  <CreatedDate>2025-06-24T13:00:40.5364834+00:00</CreatedDate>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <ModifiedBy>1</ModifiedBy>
  <ModifiedDate>2025-06-24T13:00:40.5364834+00:00</ModifiedDate>
  <FeeMasterId>1</FeeMasterId>
  <FeeTitle>sample string 2</FeeTitle>
</FeeMaster>

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 'FeeMaster'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.