POST api/individualStatements/UpdateSalaryRow
Request Information
URI Parameters
None.
Body Parameters
AccTaxIndividualSalaryUpdateRowInput| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeSn | integer |
None. |
|
| CurrentIncome | decimal number |
None. |
|
| CurrentTaxExemptIncome | decimal number |
None. |
|
| PensionInsurance | decimal number |
None. |
|
| MedicalInsurance | decimal number |
None. |
|
| UnemploymentInsurance | decimal number |
None. |
|
| HousingFund | decimal number |
None. |
|
| EnterpriseAnnuity | decimal number |
None. |
|
| CommercialHealthInsurance | decimal number |
None. |
|
| TaxDeferredPension | decimal number |
None. |
|
| OtherDeductions | decimal number |
None. |
|
| Remark | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"employeeSn": 1,
"currentIncome": 1.0,
"currentTaxExemptIncome": 1.0,
"pensionInsurance": 1.0,
"medicalInsurance": 1.0,
"unemploymentInsurance": 1.0,
"housingFund": 1.0,
"enterpriseAnnuity": 1.0,
"commercialHealthInsurance": 1.0,
"taxDeferredPension": 1.0,
"otherDeductions": 1.0,
"remark": "sample string 2"
}
application/xml, text/xml
Sample:
<AccTaxIndividualSalaryUpdateRowInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAccTax.Declaration.Shared.Dtos.TaxIndividualDeclaration"> <CommercialHealthInsurance>1</CommercialHealthInsurance> <CurrentIncome>1</CurrentIncome> <CurrentTaxExemptIncome>1</CurrentTaxExemptIncome> <EmployeeSn>1</EmployeeSn> <EnterpriseAnnuity>1</EnterpriseAnnuity> <HousingFund>1</HousingFund> <MedicalInsurance>1</MedicalInsurance> <OtherDeductions>1</OtherDeductions> <PensionInsurance>1</PensionInsurance> <Remark>sample string 2</Remark> <TaxDeferredPension>1</TaxDeferredPension> <UnemploymentInsurance>1</UnemploymentInsurance> </AccTaxIndividualSalaryUpdateRowInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDataOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| State | ResponseState |
None. |
|
| SubState | ResponseSubStateCode |
None. |
|
| Data | boolean |
None. |
|
| Msg | string |
None. |
|
| TaskType | TaxTaskType |
None. |
|
| TaskStyle | integer |
None. |
|
| DeniedPermission | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"state": 1000,
"subState": 0,
"data": true,
"msg": "sample string 2",
"taskType": 3,
"taskStyle": 3,
"deniedPermission": "sample string 4"
}
application/xml, text/xml
Sample:
<ResponseDataOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAcc.TaxDeclaration.Service.Models"> <Data>true</Data> <DeniedPermission>sample string 4</DeniedPermission> <Msg>sample string 2</Msg> <State>OK</State> <SubState>OK</SubState> <TaskStyle>3</TaskStyle> <TaskType>已认证抵扣发票</TaskType> </ResponseDataOfboolean>