I'm having partial success with the code given here. Let me clarify the two methods I am using.
Method 1: leads.get_list(**request.GET) Method 2: params = dict(request.GET.items()) milestones.get_values(**params) Method 1 works with keywords that want lists. For example.. the order by clause works in method 1 but not in method 2. (?order_by=city) Method 2 works with keywords that do not require a list. For example, the limit and offset keywords work in method 2 and do not work in method 1. (?offset=2&limit=1) I believe this is where some confusion is setting in. Could someone clarify how to write a url that one of these methods support.