POST api/FrontierWeb/Timesheet/EditEmployeeTimesheet
Request Information
URI Parameters
None.
Body Parameters
EditEmployeeTimesheetRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TimesheetIdNo | integer |
None. |
|
| ClockInDateTime | date |
None. |
|
| ClockOutDateTime | date |
None. |
|
| EmployeeIdNo | integer |
None. |
|
| DepartmentCode | string |
None. |
|
| GeoLocationIdNo | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TimesheetIdNo": 1,
"ClockInDateTime": "2025-11-05T15:00:51.1309636-06:00",
"ClockOutDateTime": "2025-11-05T15:00:51.1309636-06:00",
"EmployeeIdNo": 4,
"DepartmentCode": "sample string 5",
"GeoLocationIdNo": 6
}
text/html
Sample:
{"TimesheetIdNo":1,"ClockInDateTime":"2025-11-05T15:00:51.1309636-06:00","ClockOutDateTime":"2025-11-05T15:00:51.1309636-06:00","EmployeeIdNo":4,"DepartmentCode":"sample string 5","GeoLocationIdNo":6}
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}