Retrieve an App

Retrieve an App

GET https://api.ocamba.com/v2/ocamba/app-store/{app_id}
Retrieves the details of a certain app if a valid identifier was provided

Tip
If you don’t know the app id, list the members to find it.

Path parameters

parameters

Query parameters

parameters

Response schemas

curl -X GET \
 "https://api.ocamba.com/v2/ocamba/app-store/{app_id}" \
  -H "Authorization: Bearer {TOKEN}"
const url = 'https://api.ocamba.com/v2/ocamba/app-store/{app_id}';
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/{app_id}");
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": 1,
  "items": [
    {
      "id": "1003",
      "type": "application",
      "title": "Push App",
      "name": "push",
      "logo": "https://sm.ocmcore.com/share/6197120/ocamba/apps/push/logo/push.svg",
      "description": "Ocamba Push allows you to deliver personalized push notifications to your audience. Fully customize your content, stimulate user engagement with real-time updates, promotions, or reminders, boost conversion rates, and increase traffic on your mobile app or website.",
      "published_version": "1.0.0",
      "rc_version": "2.0.16",
      "status": "trial",
      "installed_version": "2.0.16",
      "create_time": "2021-03-03 09:29:18",
      "update_time": "2021-07-20 12:17:09"
    }
  ]
}
Responses