Skip to content

2.2.2) Requests: GET Additional Parameters

Marco Cesarato edited this page Apr 9, 2019 · 2 revisions

Additional Parameters

  • order_by: column_name

    Can 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 or DESC (default ASC)

  • limit: max elements to retrieve

ex: /[database]/[tabel]/[colomn]/[value].[format]?order_by=[column]&direction=[direction]

Clone this wiki locally