GET payroll/contracts/employmenttypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of EmploymentType
NameDescriptionTypeAdditional information
ID

integer

None.

CountryID

integer

None.

Name

string

None.

IsTaxable

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "CountryID": 2,
    "Name": "sample string 3",
    "IsTaxable": true
  },
  {
    "ID": 1,
    "CountryID": 2,
    "Name": "sample string 3",
    "IsTaxable": true
  }
]

text/xml

Sample:
<ArrayOfEmploymentType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pixfin.DTO.Payroll">
  <EmploymentType>
    <CountryID>2</CountryID>
    <ID>1</ID>
    <IsTaxable>true</IsTaxable>
    <Name>sample string 3</Name>
  </EmploymentType>
  <EmploymentType>
    <CountryID>2</CountryID>
    <ID>1</ID>
    <IsTaxable>true</IsTaxable>
    <Name>sample string 3</Name>
  </EmploymentType>
</ArrayOfEmploymentType>