POST api/Employee/SaveEmployeeSalary

Request Information

URI Parameters

None.

Body Parameters

EmployeeSalaryConfigModel
NameDescriptionTypeAdditional information
Id

integer

None.

EmpId

integer

None.

PayGroupId

integer

None.

PayConfigID

integer

None.

Values

string

None.

PayConfigName

string

None.

PayConfigType

string

None.

IsPTaxActive

boolean

None.

OvertimeAllowance

decimal number

None.

ContinuousAllowance

string

None.

ProductionBonus

string

None.

SalaryConfigureType

integer

None.

SalaryConfigureID

integer

None.

IsCalculative

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "EmpId": 1,
  "PayGroupId": 1,
  "PayConfigID": 1,
  "Values": "sample string 2",
  "PayConfigName": "sample string 3",
  "PayConfigType": "sample string 4",
  "IsPTaxActive": true,
  "OvertimeAllowance": 1.1,
  "ContinuousAllowance": "sample string 5",
  "ProductionBonus": "sample string 6",
  "SalaryConfigureType": 1,
  "SalaryConfigureID": 1,
  "IsCalculative": true
}

application/xml, text/xml

Sample:
<EmployeeSalaryConfigModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MendinePayroll.Models">
  <ContinuousAllowance>sample string 5</ContinuousAllowance>
  <EmpId>1</EmpId>
  <Id>1</Id>
  <IsCalculative>true</IsCalculative>
  <IsPTaxActive>true</IsPTaxActive>
  <OvertimeAllowance>1.1</OvertimeAllowance>
  <PayConfigID>1</PayConfigID>
  <PayConfigName>sample string 3</PayConfigName>
  <PayConfigType>sample string 4</PayConfigType>
  <PayGroupId>1</PayGroupId>
  <ProductionBonus>sample string 6</ProductionBonus>
  <SalaryConfigureID>1</SalaryConfigureID>
  <SalaryConfigureType>1</SalaryConfigureType>
  <Values>sample string 2</Values>
</EmployeeSalaryConfigModel>

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.