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": "ae0a2589-386f-4f09-9f34-1347c35318f6", "ExternalId": "sample string 2", "IntegrationId": "d95f09ed-0ad3-490f-9f2b-39c19a85f9f4", "LogDate": "2025-09-03T17:57:42.2990637+00:00", "Hours": { "a74e9e4b-dbe8-4937-aea7-2d76e30d2852": 2.0, "223f13de-d6b8-4aa3-8586-a152d0c758a6": 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 }