Seller Delete All User Variables

POST
https://authsecure.com/api/seller/

End/Modify user data and sessions directly securely.

Permanently delete all user variables for this application. This will remove every stored user variable across all users.

Endpoint Details

GET /api/seller_delete_all_user_variables.php

Query Parameters

ParameterRequiredDescription
sellerkeyYesSeller API Key

Success Response

{
  "success": true,
  "msg": "All variables deleted",
  "deleted": 42
}

Code Examples

fetch("http://localhost/commen/api/seller_delete_all_user_variables.php?sellerkey=KEY")
 .then(r => r.json())
 .then(console.log);
<?php
echo file_get_contents(
 "http://localhost/commen/api/seller_delete_all_user_variables.php?sellerkey=KEY"
);
?>
import requests
r = requests.get("http://localhost/commen/api/seller_delete_all_user_variables.php", params={
 "sellerkey":"KEY"
})
print(r.text)
var client = new RestClient(
 "http://localhost/commen/api/seller_delete_all_user_variables.php?sellerkey=KEY"
);
var res = client.Execute(new RestRequest(Method.GET));
Console.WriteLine(res.Content);