POST api/worklog
Request Information
URI Parameters
None.
Body Parameters
WorkLogPostName | Description | Type | Additional information |
---|---|---|---|
TaskId | globally unique identifier |
None. |
|
ExternalId | string |
None. |
|
IntegrationId | globally unique identifier |
None. |
|
LogDate | date |
None. |
|
Hours | Dictionary of globally unique identifier [key] and decimal number [value] |
None. |
Request Formats
application/json, text/json
Sample:
{ "TaskId": "2828919a-2690-4e26-820c-c756def33ec0", "ExternalId": "sample string 2", "IntegrationId": "442275bf-b1c5-42bb-a3bc-d04e3bb55dfd", "LogDate": "2025-07-08T17:40:57.7758149+00:00", "Hours": { "5b442bdc-f327-47cd-8404-53d5364ea05c": 2.0, "618068da-89b9-4075-bd9e-aa97abff69eb": 4.0 } }
Response Information
Resource Description
WorkLogResponseName | Description | Type | Additional information |
---|---|---|---|
Success | boolean |
None. |
|
TaskFound | boolean |
None. |
|
NewRow | boolean |
None. |
|
TotalUsedHours | decimal number |
None. |
|
PeriodFound | boolean |
None. |
|
PeriodClosed | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Success": true, "TaskFound": true, "NewRow": true, "TotalUsedHours": 4.0, "PeriodFound": true, "PeriodClosed": true }