Skip to content

GET applications

Jefferson Medeiros edited this page Nov 27, 2019 · 5 revisions

Description

Returns a list with applications. The query supports Paging and Sorting. Only Admin user can list information of all applications.

Parameters

page: integer The page number.

limit: integer The number of items to return.

sort: array[string] Contains the names of the attributes, separated by commas, that will be used to sort the result of the query. For ascending sort, use the '+' character before the attribute name. For descending sort, use the '-' character before the attribute name. By default, the order is ascending, so the '+' symbol is optional, just enter the attribute.

URL

GET https://localhost:3001/v1/applications

Curl example

curl -X GET "https://localhost:3001/v1/applications?page=1&limit=20" -H "accept: application/json" -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Response body

  • 200 Successful requisition.

    [
      {
        "id": "5db32930bec1431c51ae15fb",
        "username": "APPBR01",
        "institution_id": "5a62be07de34500146d9c624",
        "application_name": "Raspberry Pi 3 Model B+"
      }
    ]
  • 500 Internal Server Error

Account users

Integration endpoints

auth

users

institutions

children

families

families.children

educators

educators.children.groups

healthprofessionals

healthprofessionals.children.groups

applications

Error patterns

400 Validation Errors

Clone this wiki locally