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

Query parameters

parameters

Response schemas

GET https://api.ocamba.com/v2/ocamba/app-store HTTP/1.1
Host: api.ocamba.com
Authorization: Bearer YOUR_SECRET_TOKEN
curl -X GET "https://api.ocamba.com/v2/ocamba/app-store" \
  -H "Authorization: Bearer $TOKEN"
fetch("https://api.ocamba.com/v2/ocamba/app-store", {
  method: "GET",
  headers: { Authorization: `Bearer ${TOKEN}` }
}).then(r => r.json());
$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

HTTP/1.1 200 OK
Content-Type: application/json

{
  "total": 2,
  "items": [
    {
      "id": "123456789",
      "type": "application",
      "title": "AdExchange",
      "name": "adex",
      "description": "here goes description",
      "logo": "https://logo-uri-example.com",
      "published_version": "1.0.10",
      "rc_version": "2.0.1",
      "status": "trial",
      "installed_version": "2.0.28",
      "create_time": "2021-11-25 13:45:03",
      "update_time": "2021-11-26 11:37:25"
    }
  ]
}
Responses
Tip
1
Searchable fields are: title, description, rc_version and published_version.
2
Sortable fields are: id, type, title, name, create_time and update_time.