-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Currently for restaurants, the API needs to be able to support server-side filtering query parameters.
My proposal for the params:
- ?page[offset] => the page offset
- ?page[limit] => the limit of items returned per page
- ?sort => what column to sort on
- ?desc => sort descending, if this param isnt specified then sort asc
Sample query:
http://asktoni.com/restaurants?page[offset]=1&page[limit]=20&sort=name&desc
Reactions are currently unavailable