POST api/FrontierWeb/Timesheet/EditEmployeeDirectPay
Request Information
URI Parameters
None.
Body Parameters
EditEmployeeDirectPayRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PayrollEntryIdNo | integer |
None. |
|
| PayDate | date |
None. |
|
| EmployeeIdNo | integer |
None. |
|
| DepartmentCode | string |
None. |
|
| GeoLocationIdNo | integer |
None. |
|
| PayrollAccountCode | string |
None. |
|
| PaidHours | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"PayrollEntryIdNo": 1,
"PayDate": "2025-11-05T15:00:51.4122357-06:00",
"EmployeeIdNo": 3,
"DepartmentCode": "sample string 4",
"GeoLocationIdNo": 5,
"PayrollAccountCode": "sample string 6",
"PaidHours": 7.0
}
text/html
Sample:
{"PayrollEntryIdNo":1,"PayDate":"2025-11-05T15:00:51.4122357-06:00","EmployeeIdNo":3,"DepartmentCode":"sample string 4","GeoLocationIdNo":5,"PayrollAccountCode":"sample string 6","PaidHours":7.0}
Response Information
Resource Description
GenericTransactionResponse| Name | 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}