GET api/Dashboard/GetEmployeePayroll?employeeId={employeeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| employeeId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Payroll| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | Link |
None. |
|
| NextPayDate | date |
None. |
|
| Gross | string |
None. |
|
| TakeHome | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"title": {
"text": "sample string 1",
"url": "sample string 2"
},
"nextPayDate": "2026-02-04T03:07:54.7637271+00:00",
"gross": "sample string 2",
"takeHome": "sample string 3"
}
application/xml, text/xml
Sample:
<Payroll xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GTI.DW.PeopleProfile.Domain.Models">
<Gross>sample string 2</Gross>
<NextPayDate>2026-02-04T03:07:54.7637271+00:00</NextPayDate>
<TakeHome>sample string 3</TakeHome>
<Title>
<Text>sample string 1</Text>
<Url>sample string 2</Url>
</Title>
</Payroll>