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": "f0bd0334-4083-4a2b-a32e-09f5b914aec0", "ExternalId": "sample string 2", "IntegrationId": "6cb802c4-73c9-4013-b56d-8baa52adaf45", "LogDate": "2025-10-19T09:03:50.0522981+00:00", "Hours": { "9790e170-e3e9-461a-94c1-8f150d091d37": 2.0, "d4cb3455-f080-4ec6-820b-0a5b284d41fe": 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 }