Sep 11, 2022 05:21 AM
Hey there,
I am currently using the Airtable API by using Make (Integromat).
Since the sorting from the base won’t get passed to the output, you need to sort it inside the API call.
Now I want to sort my output by two parameters.
Unfortunately the sort[0] parameter gets overwritten by sort[1].
I would like to have the sort[0] prioritised, how could I do that?
Any input or suggestions would be highly appreciated.
Thanks in advance! :slightly_smiling_face:
Sep 11, 2022 06:05 AM
That isn’t what the sort interface looks like in Integromat/Make. Where are you getting that screenshot from?
Sep 11, 2022 06:20 AM
Don’t worry, it is.
Sep 11, 2022 06:40 AM
Why are you not using the “search records” module instead of trying to craft your own API call?
I don’t know how to guide you on your method, but your issue might be that the sort parameter is expecting an array of fields. Not sure.
In the meantime, I would recommend using the Search module, which has the sort functionality built into it.
Sep 11, 2022 08:25 AM
By the way, for what it’s worth, I just tested your code above, and it works fine for me! Check out my screenshot below from Make.com to make sure you have it correct on your end.
If it’s still not sorting correctly on your end, then you might have some problem with your data in Airtable, such as leading spaces in your fields that might be throwing off the sort.
The one problem here is that when you craft your own API call, all of your records are all returned as one bundle, and then you have to iterate through them to do things with them individually. When you use the search module, each record is returned individually to you.