POST api/FrontierWeb/Timesheet/GetEmployeeFederalPayHours

Request Information

URI Parameters

None.

Body Parameters

GetEmployeeTimesheetProfileRequest
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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-06-18T09:21:27.2305706-05:00",
    "PayrollAccountCode": "sample string 4",
    "PayrollAccountName": "sample string 5",
    "PaidHours": 6.0,
    "Status": "sample string 7",
    "IsEditable": true
  },
  {
    "IdNo": 1,
    "EmployeeIdNo": 2,
    "PayDate": "2025-06-18T09:21:27.2305706-05: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-06-18T09:21:27.2305706-05:00","PayrollAccountCode":"sample string 4","PayrollAccountName":"sample string 5","PaidHours":6.0,"Status":"sample string 7","IsEditable":true},{"IdNo":1,"EmployeeIdNo":2,"PayDate":"2025-06-18T09:21:27.2305706-05:00","PayrollAccountCode":"sample string 4","PayrollAccountName":"sample string 5","PaidHours":6.0,"Status":"sample string 7","IsEditable":true}]