POST api/Employee/InsertEmployeePromotion

Request Information

URI Parameters

None.

Body Parameters

EmployeePromotion
NameDescriptionTypeAdditional information
promid

integer

None.

empid

string

None.

finyear

string

None.

oldgross

decimal number

None.

oldctc

decimal number

None.

incregross

decimal number

None.

newgross

decimal number

None.

newctc

decimal number

None.

approveby

string

None.

approveon

date

None.

updateby

string

None.

updateon

date

None.

status

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "promid": 1,
  "empid": "sample string 2",
  "finyear": "sample string 3",
  "oldgross": 1.0,
  "oldctc": 1.0,
  "incregross": 1.0,
  "newgross": 1.0,
  "newctc": 1.0,
  "approveby": "sample string 4",
  "approveon": "2025-12-06T09:35:15.4347728+05:30",
  "updateby": "sample string 5",
  "updateon": "2025-12-06T09:35:15.4347728+05:30",
  "status": 1
}

application/xml, text/xml

Sample:
<EmployeePromotion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
  <approveby>sample string 4</approveby>
  <approveon>2025-12-06T09:35:15.4347728+05:30</approveon>
  <empid>sample string 2</empid>
  <finyear>sample string 3</finyear>
  <incregross>1</incregross>
  <newctc>1</newctc>
  <newgross>1</newgross>
  <oldctc>1</oldctc>
  <oldgross>1</oldgross>
  <promid>1</promid>
  <status>1</status>
  <updateby>sample string 5</updateby>
  <updateon>2025-12-06T09:35:15.4347728+05:30</updateon>
</EmployeePromotion>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>