GET api/mobile/TimesheetStatus?TimesheetID={TimesheetID}
Return the status of a timesheet record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| TimesheetID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TimesheetOutputs| Name | Description | Type | Additional information |
|---|---|---|---|
| TimesheetID | integer |
None. |
|
| HandsetTimesheetID | integer |
None. |
|
| WeekCommencing | date |
None. |
|
| Result | string |
None. |
|
| Details | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"TimesheetID": 1,
"HandsetTimesheetID": 2,
"WeekCommencing": "2025-11-12T21:43:27.3450732+00:00",
"Result": "sample string 4",
"Details": "sample string 5"
}
text/html
Sample:
{"TimesheetID":1,"HandsetTimesheetID":2,"WeekCommencing":"2025-11-12T21:43:27.3450732+00:00","Result":"sample string 4","Details":"sample string 5"}
application/xml, text/xml
Sample:
<MobileTimesheetsController.Outputs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IBMS_Cloud_API.Controllers"> <Details>sample string 5</Details> <HandsetTimesheetID>2</HandsetTimesheetID> <Result>sample string 4</Result> <TimesheetID>1</TimesheetID> <WeekCommencing>2025-11-12T21:43:27.3450732+00:00</WeekCommencing> </MobileTimesheetsController.Outputs>