POST api/FrontierWeb/Timesheet/GetEmployeeFederalPayHours
Request Information
URI Parameters
None.
Body Parameters
GetEmployeeTimesheetProfileRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PayPeriodIdNo | integer |
None. |
|
| EmployeeIdNo | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PayPeriodIdNo": 1,
"EmployeeIdNo": 2
}
text/html
Sample:
{"PayPeriodIdNo":1,"EmployeeIdNo":2}
Response Information
Resource Description
Collection of FederalPayHoursEntry| Name | Description | Type | Additional information |
|---|---|---|---|
| IdNo | integer |
None. |
|
| EmployeeIdNo | integer |
None. |
|
| PayDate | date |
None. |
|
| PayrollAccountCode | string |
None. |
|
| PayrollAccountName | string |
None. |
|
| PaidHours | decimal number |
None. |
|
| Status | string |
None. |
|
| IsEditable | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"IdNo": 1,
"EmployeeIdNo": 2,
"PayDate": "2025-12-20T21:13:30.1220903-06:00",
"PayrollAccountCode": "sample string 4",
"PayrollAccountName": "sample string 5",
"PaidHours": 6.0,
"Status": "sample string 7",
"IsEditable": true
},
{
"IdNo": 1,
"EmployeeIdNo": 2,
"PayDate": "2025-12-20T21:13:30.1220903-06:00",
"PayrollAccountCode": "sample string 4",
"PayrollAccountName": "sample string 5",
"PaidHours": 6.0,
"Status": "sample string 7",
"IsEditable": true
}
]
text/html
Sample:
[{"IdNo":1,"EmployeeIdNo":2,"PayDate":"2025-12-20T21:13:30.1220903-06:00","PayrollAccountCode":"sample string 4","PayrollAccountName":"sample string 5","PaidHours":6.0,"Status":"sample string 7","IsEditable":true},{"IdNo":1,"EmployeeIdNo":2,"PayDate":"2025-12-20T21:13:30.1220903-06:00","PayrollAccountCode":"sample string 4","PayrollAccountName":"sample string 5","PaidHours":6.0,"Status":"sample string 7","IsEditable":true}]