View App pricing details
View App pricing details
GET
https://api.ocamba.com/v2/ocamba/app-store/{app_id}/pricing
Retrieves the details of a certain app pricing if a valid identifier was providedPath parameters
parametersQuery parameters
parametersResponse schemas
›
200
application/json
curl -X GET \
"https://api.ocamba.com/v2/ocamba/app-store/{app_id}/pricing" \
-H "Authorization: Bearer {TOKEN}"const url = 'https://api.ocamba.com/v2/ocamba/app-store/{app_id}/pricing';
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}/pricing");
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": 4,
"items": [
{
"plan": "enterprise",
"app_id": "1003",
"type": "deal",
"name": "ENTERPRISE",
"base": "business",
"components": {
"contact_us": [
{
"name": "contact us"
}
],
"features": [
{
"name": "Unlimited Apps"
},
{
"name": "Custom Audience Segments"
},
{
"name": "Custom User Data"
},
{
"name": "Full Onboarding"
},
{
"name": "White label domains"
},
{
"name": "Self Serving Platform"
},
{
"name": "Dedicated Account Manager"
},
{
"name": "Integration Engineer Support"
}
],
"plan_info": [
{
"limit": "Over 500K Subscribers"
}
]
}
}
]
}
Responses
Tip
If you don’t know the app id, list apps to find it.