Seller Delete Variables By Name

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

End/Modify user data and sessions directly securely.

Delete all user variables that match a specific variable name. This will delete the variable for all users.

Endpoint Details

GET /api/seller_delete_variables_by_name.php

Query Parameters

ParameterRequiredDescription
sellerkeyYesSeller API Key
varYesVariable name

Success Response

{
  "success": true,
  "msg": "Variables deleted",
  "deleted": 5
}

Code Examples

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