Seller Global Delete
End/Modify user data and sessions directly securely.
Delete a specific global variable from your application.
Endpoint Details
GET
/api/seller_global_delete.php
Query Parameters
| Parameter | Required | Description |
|---|---|---|
| sellerkey | Yes | Seller API Key |
| key | Yes | Global variable key |
Success Response
{
"success": true,
"msg": "Global variable deleted"
}
Failure Response
{
"success": false,
"msg": "Variable not found"
}
Code Examples
fetch("http://localhost/commen/api/seller_global_delete.php?sellerkey=KEY&key=VAR_NAME")
.then(r => r.json())
.then(console.log);
<?php echo file_get_contents( "http://localhost/commen/api/seller_global_delete.php?sellerkey=KEY&key=VAR_NAME" ); ?>
import requests
r = requests.get("http://localhost/commen/api/seller_global_delete.php", params={
"sellerkey":"KEY",
"key":"VAR_NAME"
})
print(r.text)
var client = new RestClient( "http://localhost/commen/api/seller_global_delete.php?sellerkey=KEY&key=VAR_NAME" ); var res = client.Execute(new RestRequest(Method.GET)); Console.WriteLine(res.Content);