LiquidPlanner Classic Forum
date filter operator "is set"
*Posted on behalf of Ricardo Signes. Original posting date 2019-02-08.*
I can find unscheduled events by searching for "earliest_start never"
It's not clear that there's a great way to search for scheduled events. I'd like an is_set operator for date fields, the inverse of never.
In the meantime, I'll probably use "earlier_start after (yesterday)" unless there's a better option.
Posted by LiquidPlanner Support about 4 years ago
Getting Event Data Also Includes Milestones?
*Posted on behalf of Kyle. Original posting date 2018-04-18.*
Howdy!
Started a new project and am focussed on pulling in & parsing Event data. Surprisingly (to me) I noticed that I'm also receiving all Milestones along with Events in the response from LP. Not a big deal, as it's easily parsed out in the application, but is this expected behavior?
The inverse doesn't appear to hold true. If I query for Milestones, I only received Milestones (and not Events).
I'm seeing this even using a basic curl command, so I don't think it's anything in my application logic.
```
curl -H "Authorization: Bearer xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" https://app.liquidplanner.com/api/v1/workspaces/xxxxxx/events
```
Posted by LiquidPlanner Support about 4 years ago
Key Value for Partial-Day
*Posted on behalf of Antonio Ghiotto. Original post date 2014-05-16*
I try to explain with the code I used in Python 2.7.
For searching an event i used this function:
def events(self):
return json.loads(self.get('/workspaces/' + str(self.workspace_id) + '/
*events*').content)
where 'events' is the key value to obatin the Full-Day Events in
LiquidPlanner.
I have tried to used the key value 'PartialDayEvent', but is not correct:
what is the key value or the correct syntax for reading the Partial-Day
Events?
Posted by LiquidPlanner Support about 4 years ago