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": "825cfb9d-0b26-4205-bbbc-db1f9ee3b0a7", "ExternalId": "sample string 2", "IntegrationId": "55f9bb24-ea75-42fe-b1b1-70a172db0dfb", "LogDate": "2025-04-04T02:27:17.046958+00:00", "Hours": { "7f4d8c76-5056-4506-84e1-b0c4a9b29976": 2.0, "ff86b8a7-1257-4bf5-b4b3-a6edd6503225": 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 }