POST api/ts/stopwatch/start?UserId={UserId}&offset={offset}
Starts a new stopwatch and will stop any other currently running stopwatches (if validation passes)
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
UserId | globally unique identifier |
Required |
|
offset | integer |
Required |
Body Parameters
Stopwatch Object Properties - Guids: TimesheetLineId, PlanId, TaskId DateTime: StartDateTime
StopwatchName | Description | Type | Additional information |
---|---|---|---|
TimesheetLineId | globally unique identifier |
None. |
|
TaskId | globally unique identifier |
None. |
|
PlanId | globally unique identifier |
None. |
|
StartDateTime | date |
None. |
|
TotalCompletedTime | time interval |
None. |
|
IsRunning | boolean |
None. |
|
State | string |
None. |
|
LastMessage | string |
None. |
|
HoursInfo | DataRow |
None. |
|
LineInfo | DataRow |
None. |
Request Formats
application/json, text/json
Sample:
{ "TimesheetLineId": "ddd015ba-f300-4d45-9b78-25a528f1c5b0", "TaskId": "a673ce02-4937-4340-a605-a9f05f4a6f46", "PlanId": "bc454f5b-21d9-4ded-876c-dc8d750311db", "StartDateTime": "2025-04-04T02:36:34.1000032+00:00", "TotalCompletedTime": "00:00:00.1234567", "IsRunning": true, "State": "sample string 7", "LastMessage": "sample string 8" }
Response Information
Resource Description
Collection of StopwatchName | Description | Type | Additional information |
---|---|---|---|
TimesheetLineId | globally unique identifier |
None. |
|
TaskId | globally unique identifier |
None. |
|
PlanId | globally unique identifier |
None. |
|
StartDateTime | date |
None. |
|
TotalCompletedTime | time interval |
None. |
|
IsRunning | boolean |
None. |
|
State | string |
None. |
|
LastMessage | string |
None. |
|
HoursInfo | DataRow |
None. |
|
LineInfo | DataRow |
None. |
Response Formats
application/json, text/json
Sample:
[ { "TimesheetLineId": "a23fdfeb-cadc-497a-965d-53c07289ac83", "TaskId": "a3da60a3-67d4-4e60-8427-479d93f362e7", "PlanId": "9b66591b-ea7e-4314-a1b0-ee1973c3fda2", "StartDateTime": "2025-04-04T02:36:34.1156309+00:00", "TotalCompletedTime": "00:00:00.1234567", "IsRunning": true, "State": "sample string 7", "LastMessage": "sample string 8", "HoursInfo": null, "LineInfo": null }, { "TimesheetLineId": "a23fdfeb-cadc-497a-965d-53c07289ac83", "TaskId": "a3da60a3-67d4-4e60-8427-479d93f362e7", "PlanId": "9b66591b-ea7e-4314-a1b0-ee1973c3fda2", "StartDateTime": "2025-04-04T02:36:34.1156309+00:00", "TotalCompletedTime": "00:00:00.1234567", "IsRunning": true, "State": "sample string 7", "LastMessage": "sample string 8", "HoursInfo": null, "LineInfo": null } ]