I was using GET/v1-2/get-lists for fetching all the lists.
Now I am migrating to v2023-10-15/.../get_lists api which has by default a max limit of 10 results per page.
To accommodate this new `10 result per page` I have updated my logic to keep calling the ‘next’ cursor url.
- I want to know if there’s a max limit on number of list user can create. If the max numbers is too high I would put an upper limit (less then max list allowed) to number of calls to ‘next’ cursor as I don’t want to keep calling so many times.
- I want to know did GET/v1-2/get-lists has any limit on number of results returned per call. (nothing mention in the document)