LiquidPlanner Classic Forum
Workspace Changes
*Posted on behalf of Jeremy W. Original posting date 2018-04-05.*
When I used the API for workspace changes, it lists the type, the id, who did it, resource_type, when it was done...but it doesn't list the changes. The webhooks do list the change. I'd like to get that delta from the list of workspace changes. Is that possible in a relatively simple fashion?
Also, can you elaborate on each item a bit?
```
{
"change_type": "C",
"created_at": "SOME_ISO8601_TIME",
"resource_type": "Estimate",
"created_by": some_int,
"resource_id": some_int,
"item_id": some_int,
"type": "Change",
"id": some_int
}
```
1. is there a difference between change_type and type?
2. difference between resource_id and item_id?
3. can I use "id" for a lookup to something else and get more info?
4. is "created_by" always a member?
Posted by LiquidPlanner Support about 4 years ago
How do I get the assignment history for a task?
*Posted on behalf of Anton Stonor. Original posting date 2016-01-09.*
Hi,
I'm about the pull data from the API to build a custom SLA report for a client. One rule is that a task has to be assigned to a developer within a specific time.
So I need to find out when a task has been assigned.
From poking around it looks like I might need the "Change" type to get such historical data. I can get a list of changes from
```
/api/workspaces/<id>/changes
```
but it looks like it always gives me the latest 100 changes and that the filter[] query string does not apply.
So - is there a way to do what I want?
As a plan B I've considered to subscribe to webhook messages and buld a change storage myself, but it would be easier to just query the Liquid Planner API.
/Anton
Posted by LiquidPlanner Support about 4 years ago