GET payroll/additionsdeductions/types

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of AdditionDeductionType
NameDescriptionTypeAdditional information
ID

integer

None.

CountryID

integer

None.

Title

string

None.

Deduction

boolean

None.

Percentage

boolean

None.

TaxDeduction

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "CountryID": 2,
    "Title": "sample string 3",
    "Deduction": true,
    "Percentage": true,
    "TaxDeduction": true
  },
  {
    "ID": 1,
    "CountryID": 2,
    "Title": "sample string 3",
    "Deduction": true,
    "Percentage": true,
    "TaxDeduction": true
  }
]

text/xml

Sample:
<ArrayOfAdditionDeductionType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pixfin.DTO.Payroll">
  <AdditionDeductionType>
    <CountryID>2</CountryID>
    <Deduction>true</Deduction>
    <ID>1</ID>
    <Percentage>true</Percentage>
    <TaxDeduction>true</TaxDeduction>
    <Title>sample string 3</Title>
  </AdditionDeductionType>
  <AdditionDeductionType>
    <CountryID>2</CountryID>
    <Deduction>true</Deduction>
    <ID>1</ID>
    <Percentage>true</Percentage>
    <TaxDeduction>true</TaxDeduction>
    <Title>sample string 3</Title>
  </AdditionDeductionType>
</ArrayOfAdditionDeductionType>