[Answered ]-How to GET the query parameters in Django-Tastypie

2👍

✅

Django’s request object is kept in the bundle under the property named request.
You can use:

bundle.request.GET 

in order to access the query parameters.
See documentation on the request document here

Leave a comment