Skip to main content

Purge Add

This operation purges files in the cache of edge nodes.

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

files

array

No

The files list to be purged. Allowed files list count 1000 for per request .

Return Values

Variable

Type

status

bool

Status Info

Status

Description

1

Purge successful completed.

-1

No response from origin. (Origin Response Http Code: 504-301-499)

Example PHP Code

CODE
<?php
$curl_post_data = array(
    'user_key' =>'Your User Key',
    'user_secret' =>'Your User Secret',
    'zone_id' =>'Zone Id',
    'files' => array('Your Purge File')   
);
$request_body = json_encode($curl_post_data);
$service_url = 'https://api.medianova.com/v1/zone/purge/add';
$ch = curl_init($service_url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                    
curl_setopt($ch, CURLOPT_POSTFIELDS, $request_body);                                                                 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                     
curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                                                         
    'Content-Type: application/json',                                                                               
    'Content-Length: ' . strlen($request_body))                                                                      
);
$response = curl_exec($ch);
$decoded = json_decode($response);
var_dump($decoded); 
 
?>

Example Output

CODE
{
  "status": true
}

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.