POST api/EmpExpense/ExpenseEntry

Request Information

URI Parameters

None.

Body Parameters

EmpExpEntryModel
NameDescriptionTypeAdditional information
Entry_Date

date

None.

EmpId

string

None.

FieldId

integer

None.

Amount

decimal number

None.

Remark

string

None.

CreatedBy

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Entry_Date": "2026-05-26T11:15:58.6830671-07:00",
  "EmpId": "sample string 2",
  "FieldId": 3,
  "Amount": 4.0,
  "Remark": "sample string 5",
  "CreatedBy": "sample string 6"
}

application/xml, text/xml

Sample:
<EmpExpEntryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApplicationDataAccess.Models">
  <Amount>4</Amount>
  <CreatedBy>sample string 6</CreatedBy>
  <EmpId>sample string 2</EmpId>
  <Entry_Date>2026-05-26T11:15:58.6830671-07:00</Entry_Date>
  <FieldId>3</FieldId>
  <Remark>sample string 5</Remark>
</EmpExpEntryModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.