List Apps on App Store

List Apps on App Store

GET https://api.ocamba.com/v2/ocamba/app-store
Returns a list of Apps on App store

Tip

Searchable fields are: title, description, rc_version and published_version.

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

Query parameters

parameters

Response schemas

curl -X GET \
 "https://api.ocamba.com/v2/ocamba/app-store" \
  -H "Authorization: Bearer {TOKEN}"
const url = 'https://api.ocamba.com/v2/ocamba/app-store';
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/app-store");
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": 2,
  "items": [
    {
      "id": "1001",
      "type": "application",
      "title": "AdExchange",
      "name": "adex",
      "logo": "https://sm.ocmcore.com/share/6197120/ocamba/apps/adex/logo/adex.svg",
      "description": "Ocamba AdExchange is an automated bidding system with full machine learning for maximum efficiency in Ad campaign management.  It allows you to have full control over Ad display, with advanced targeting and statistics to improve and manage your campaign performance with ease. ",
      "published_version": "1.0.1",
      "rc_version": "2.0.28",
      "status": "active",
      "installed_version": "2.0.28",
      "create_time": "2021-02-17 15:29:25",
      "update_time": "2021-07-20 12:17:09"
    },
    {
      "id": "1005",
      "type": "application",
      "title": "Lorem Ipsum",
      "name": "loremipsum",
      "logo": "https://cdn2.iconfinder.com/data/icons/advertising-agency-malibu-vol-2/128/Open_Exchange-512.png",
      "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages.",
      "published_version": "1.0.8",
      "rc_version": "1.0.9",
      "status": "uninstalled",
      "installed_version": "1.0.9",
      "create_time": "2021-03-05 12:27:18",
      "update_time": "2021-04-13 13:48:06"
    }
  ]
}
Responses