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": "61794510-849e-4c3f-8c79-bdab61ac9b6d", "ExternalId": "sample string 2", "IntegrationId": "3702c91a-35d1-4bd4-8cd8-4ba6a25061cf", "LogDate": "2025-05-23T19:28:33.5107372+00:00", "Hours": { "3931aa54-3d02-4560-a31e-2edced9c6f7a": 2.0, "588b5e9d-491d-4c77-8316-134653d3e8ae": 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 }