-
Notifications
You must be signed in to change notification settings - Fork 26
2.2.2) Requests: GET Additional Parameters
Marco Cesarato edited this page Apr 9, 2019
·
2 revisions
-
order_by
: column_nameCan be and array or a string
order_by = 'username, name, surname' // OR order_by = array('username', 'name', 'surname')
for more specific order direction
order_by['users.username'] = 'DESC'
-
direction
:ASC
orDESC
(defaultASC
) -
limit
: max elements to retrieve
ex: /[database]/[tabel]/[colomn]/[value].[format]?order_by=[column]&direction=[direction]