Your problem
My problem is: When I create a new contact from Zapier, I can not select all of my tags in Mautic to be added to the contact. It appears that only 30 tags are loaded.
@adiux does it make any difference if you do https://m.domain.com/api/tags?limit=1 (without the last forward slash) instead of https://m.domain.com/api/tags/?limit=1 ? Just curious
Thank you @dennisameling, I guess this will fix it for now.
But I assume this creates some new performance problems. E.g if a plugin is fetching contacts (who have a lot of data), relies on paging, and does not manually specify the limit.
I guess the safest option would be to use the search functionality from Zapier. Based on the documentation the Mautic API is providing a search parameter. So the call would be something like this (not working for me):
curl --location --request GET 'https://m.domain.com/api/tags?search=gmail&limit=30' \
--header 'Authorization: Basic ************'