List Apps

List Apps

GET https://api.ocamba.com/v2/ocamba/apps
Returns a list of Apps

Query parameters

parameters

Response schemas

curl -X GET \
 "https://api.ocamba.com/v2/ocamba/apps" \
  -H "Authorization: Bearer {TOKEN}"
const url = 'https://api.ocamba.com/v2/ocamba/apps';
const options = {
  method: 'GET',
  headers: {
    Authorization: `Bearer {TOKEN}`
  }
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
$ch = curl_init("https://api.ocamba.com/v2/ocamba/apps");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  "Authorization: Bearer {TOKEN}"
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);

Responses

200 OK

{
  "total": 7,
  "items": [
    {
      "id": "1018",
      "type": "application",
      "title": "developer",
      "name": "developer",
      "create_time": "2021-10-08 11:42:48",
      "update_time": "2021-11-15 09:43:31"
    },
    {
      "id": "1017",
      "type": "application",
      "title": "demoapp",
      "name": "demoapp",
      "create_time": "2021-10-08 11:27:31",
      "update_time": "2021-11-15 08:10:49"
    },
    {
      "id": "1016",
      "type": "application",
      "title": "finance",
      "name": "finance",
      "create_time": "2021-10-08 10:00:25",
      "update_time": "2021-10-08 10:04:41"
    }
  ]
}
Responses
Tip

Searchable fields are title and description. Sortable fields are: id, type, title, name, create_time and update_time.

Filterable fields are: id, type, title, name, create_time and update_time.