I'd appreciate your help, as I've been trying to figure something out for the last couple of hours.
In Insomnia I'm doing this API call:
GET https://sdpondemand.manageengine.com/api/v3/solutions
multipart form:
input_data={"list_info":{"search_criteria":{"field":"display_id","condition":"is","value":30}}}
headers:
Accept=application/vnd.manageengine.sdp.v3+json
Authorization= Zoho-oauthtoken etoken]
The problem lies in the multipart form which is being ignored. I always get a full list, while this should be filetering the items out.
my processfloe monitor show the input parameters are okis ok:

it gives a sucess:

but the output is the whole list, and not filtered as it is in insomnia:

this is my setup:

(also tried URL encoded. Then the debug data shows the encoded input_data, but it is still not filtered. )


BTW, I do the same whith a PUT in another endpoint and there it works very well.