Logs Delete All
End/Modify user data and sessions directly securely.
Deletes ALL logs from the system.
⚠️ Warning: This action is irreversible. All logs will be permanently deleted.
Endpoint Details
GET
/api/logs_delete_all.php
Query Parameters
| Parameter | Required | Description |
|---|---|---|
| sellerkey | Yes | Seller API Key |
Success Response
{
"success": true,
"message": "All logs deleted successfully"
}
Code Examples
fetch("http://localhost/commen/api/logs_delete_all.php?sellerkey=KEY")
.then(r => r.json())
.then(console.log);
<?php echo file_get_contents( "http://localhost/commen/api/logs_delete_all.php?sellerkey=KEY" ); ?>
import requests
r = requests.get(
"http://localhost/commen/api/logs_delete_all.php",
params={"sellerkey":"KEY"}
)
print(r.text)
var client = new RestClient( "http://localhost/commen/api/logs_delete_all.php?sellerkey=KEY" ); var res = client.Execute(new RestRequest(Method.GET)); Console.WriteLine(res.Content);