GET payroll/reports?skip={skip}&take={take}&year={year}&firstname={firstname}&lastname={lastname}&vat={vat}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| skip | integer |
Default value is 0 |
|
| take | integer |
Default value is 50 |
|
| year | integer |
None. |
|
| firstname | string |
None. |
|
| lastname | string |
None. |
|
| vat | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of Report| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | string |
None. |
|
| EmployeeID | integer |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| VAT | string |
None. |
|
| Link | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Type": "sample string 1",
"EmployeeID": 2,
"FirstName": "sample string 3",
"LastName": "sample string 4",
"VAT": "sample string 5",
"Link": "sample string 6"
},
{
"Type": "sample string 1",
"EmployeeID": 2,
"FirstName": "sample string 3",
"LastName": "sample string 4",
"VAT": "sample string 5",
"Link": "sample string 6"
}
]
text/xml
Sample:
<ArrayOfReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pixfin.DTO.Payroll">
<Report>
<EmployeeID>2</EmployeeID>
<FirstName>sample string 3</FirstName>
<LastName>sample string 4</LastName>
<Link>sample string 6</Link>
<Type>sample string 1</Type>
<VAT>sample string 5</VAT>
</Report>
<Report>
<EmployeeID>2</EmployeeID>
<FirstName>sample string 3</FirstName>
<LastName>sample string 4</LastName>
<Link>sample string 6</Link>
<Type>sample string 1</Type>
<VAT>sample string 5</VAT>
</Report>
</ArrayOfReport>