POST api/FrontierWeb/Timesheet/EditEmployeeBenefitHours
Request Information
URI Parameters
None.
Body Parameters
EditEmployeeBenefitHoursRequestName | Description | Type | Additional information |
---|---|---|---|
IdNo | integer |
None. |
|
PayDate | date |
None. |
|
EmployeeIdNo | integer |
None. |
|
PayrollAccountCode | string |
None. |
|
PaidHours | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "IdNo": 1, "PayDate": "2025-06-18T09:36:44.23122-05:00", "EmployeeIdNo": 3, "PayrollAccountCode": "sample string 4", "PaidHours": 5.0 }
text/html
Sample:
{"IdNo":1,"PayDate":"2025-06-18T09:36:44.23122-05:00","EmployeeIdNo":3,"PayrollAccountCode":"sample string 4","PaidHours":5.0}
Response Information
Resource Description
GenericTransactionResponseName | Description | Type | Additional information |
---|---|---|---|
ReturnedObject | Object |
None. |
|
IsSuccessful |
Indicates if the transaction was successful or not. |
boolean |
None. |
ReturnedMessages |
Contains a list of Informational, Warning, and/or Error messages regarding the outcome of the transaction. |
Collection of ReturnedMessage |
None. |
Response Formats
application/json, text/json
Sample:
{ "ReturnedObject": {}, "IsSuccessful": true, "ReturnedMessages": null }
text/html
Sample:
{"ReturnedObject":{},"IsSuccessful":true,"ReturnedMessages":null}