I am currently trying to use an API call in Make.com (because the Make app is very very thin and omits what looks like more than half of the endpoints).
I want to try to match a company based on either the company name, or an external ID but I am unable to get the filter to work. I have tried multiple variations of the filter but it gets ignored every time. I’ve also been unable to get it to work in Postman.
Hi @WomderWare! I can see the issue in your screenshot. In the Query String section, instead of using attributes.companynumber as the key, you need to wrap it inside a filters JSON object:
The /v3/companies endpoint only accepts filters through the filters parameter as a JSON string — individual attribute keys passed directly as query params are ignored. Make.com will handle the URL encoding automatically. Can you let me know if that helps?