https://api.lightspeedapp.com/API/Account/{{AccountID}}/Workorder/{{WorkorderID}}.json?load_relations=["WorkorderItems"];
1 comment
When you create a workorder the app only creates a "created-stamp" called timeStamp which is fixed.
When you add/remove workorder lines to the workorder the timestamp of that workorder line item is updated.
To get this from the API you need to load the specific relations via the url.
You can do this via
This will return an array of objects containing data about the specific line items including their individual timestamps which update accordingly
Hope this helps!