Hello,
So I have an API that returns a count of jobs for a specific date and one of the object keys is the current date. So the issue I’m having is that parabola only saves the key that is for the date I publish the flow so for example today is 2020-10-14
so when the flow goes to run tomorrow its going to look for 2020-10-14
not 2020-10-15
I have included a sample response form the api and would love any suggestions.
I think that parabola uses dot notation so in the builder it looks like api.data.2020-10-14.all
, so I would love for it to use the current date.
Thank you!
{
"data": {
"2020-10-14": {
"info_recv": 0,
"dispatched": 2,
"completed": 18,
"completed_partial": 0,
"failed": 0,
"on_hold": 0,
"return": 0,
"unassigned": 0,
"assigned": 20,
"all": 20
}
}
}