Einpix API documentation
  1. Worklog
Einpix API documentation
  • Changelog
  • About
  • API
    • Task
      • Create
      • List
      • Detail
      • Change status
    • Checklist
      • By task
    • Client
      • List
      • Detail
    • User
      • List
      • Detail
    • Venue
      • Create
      • List
      • Detail
    • Category
      • Task
        • List
        • Detail
    • Tag
      • List
      • Detail
    • Template
      • Checklist
        • List
        • Detail
    • Equipment
      • List
      • Detail
    • Comment
      • Create
      • Detail
    • Worklog
      • List
        GET
      • Hisory
        GET
    • Materials
      • By task
    • Service
      • By task
  • Schemas
    • User
    • Venue
    • Task
    • Task comment
    • Tag
    • Task category
    • Picture
    • Check item
    • Equipment
    • Client
    • Task severity
    • Attachment
    • Changed log
    • User group
    • WDJ material
    • Unit master
    • WDJ service
    • Worklog History
    • Checklist template
    • Worklog
    • Activity task
    • Downtime task
    • Sla rule
  1. Worklog

Hisory

GET
worklogs/{worklogId}/history

Fetch Worklog History API#

This API is used to retrieve the complete history of a specific worklog entry using its unique worklog ID.
The worklog history contains a chronological record of all changes made to the worklog, such as:
Creation of the worklog
Updates to the comment
Timestamps of each change

Request

Path Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.einpix.com/public/v1/worklogs//history' \
--header 'x-api-key;'

Responses

🟢200Success
application/json
Body

Example
[
    {
        "id": "91",
        "old_start_date_time": "2021-05-05T14:10:00+03:00",
        "updated_start_date_time": "2021-05-05T15:10:00+03:00",
        "old_end_date_time": "2021-05-05T15:10:00+03:00",
        "updated_end_date_time": "2021-05-05T16:10:00+03:00",
        "old_comment": "Venustas fugiat spero color. Tondeo ventus truculenter vesco tersus curatio auctor. Tristis utique tego. Balbus tremo statim ascit videlicet abduco surgo quasi.",
        "updated_comment": "Molestiae derideo amoveo cito depraedor deleo maxime bibo dolor arguo. Charisma comedo denuo subito sed cado. Vorago tredecim verto tempora vehemens aranea depopulo clibanus. Supplanto curia tam sublime vivo amo. Vitiosus talus thymum temperantia sortitus substantia ubi degero totidem quia. Summisse depopulo utpote casus. Spiculum temeritas universe cunae delicate causa acer beatus tenetur summopere. Volup derideo valens pauci aegrotatio cernuus aegrus viscus esse tracto.",
        "created": "2026-01-22T19:42:22.870Z",
        "updated_by": {
            "id": 123,
            "name": "John doe",
            "email": "john_doe@example.com"
        }
    }
]
Modified at 2026-01-27 09:33:10
Previous
List
Next
By task
Built with