Seller Global Get All

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

End/Modify user data and sessions directly securely.

Retrieve all global variables for your application.

Endpoint Details

GET /api/seller_global_get_all.php

Query Parameters

ParameterRequiredDescription
sellerkeyYesSeller API Key

Success Response

{
  "success": true,
  "variables": [
    {
      "setting_key": "example_key",
      "setting_value": "example_value",
      "created_at": "2024-01-01 12:00:00"
    }
  ]
}

Code Examples

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