Hello,
I have noticed a strange behaviour of the Get-Request node.
I’m calling the productive API to get some CRM data (so I can’t share an example).
https://developer.productive.io/deals.html#deals
I want to retrieve some deal information, specifically the deal status ID. Below, I’ll show you three API calls that should return the same deal status ID for the respective company – but they don’t.
https://api.productive.io/api/v2/deals/123456?include=creator,company,deal_status,lost_reason,next_todo,contact,responsible&page[number]=1&page[size]=10 → deal status correct
https://api.productive.io/api/v2/deals/?include=creator,company,deal_status,lost_reason,next_todo,contact,responsible&page[number]=1&page[size]=10 → deal status missing
https://api.productive.io/api/v2/deals/?include=creator,company,deal_status,lost_reason,next_todo,contact,responsible&page[number]=10&page[size]=30 → deal status wrong
If I use the exact same API calls in Postman, I get the same result three times. So the problem must be in the GET request node — or am I wrong?
Thank you