Aksela Disallow Cache Path List
With this API, you can list the pages that are not cached in Aksela.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
user_key | string | Yes | API User Token |
user_secret | string | Yes | API User Secret Token |
zone_id | integer | Yes | Zone ID |
Return Values
Variable | Type |
---|---|
status | bool |
data | object |
Example PHP Code
CODE
<?php
$user_key="Your User Key";$user_secret="Your User Secret";
$service_url = 'https://api.medianova.com/v1/zone/aksela/disallow_cache_path_list?user_key='.$user_key.'&user_secret='.$user_secret.'&zone_id=zone_id';
$ch = curl_init($service_url);curl_setopt($ch,CURLOPT_CRLF, true);
$curl_response = curl_exec($ch);curl_close($curl);?>
Example Output
CODE
{
"status": true,
"data": {
"yourPaths"
},
"opid": "IuNYKCU4rALwVa9k"
}