Seller Reseller Get All
End/Modify user data and sessions directly securely.
Retrieve all resellers linked to your application.
Endpoint Details
GET
/api/seller_reseller_get_all.php
Query Parameters
| Parameter | Required | Description |
|---|---|---|
| sellerkey | Yes | Seller API Key |
Success Response
{
"success": true,
"resellers": [
{
"id": 1,
"username": "reseller1",
"created_at": "2024-01-01 12:00:00"
}
]
}
Code Examples
fetch("http://localhost/commen/api/seller_reseller_get_all.php?sellerkey=KEY")
.then(r => r.json())
.then(console.log);
<?php echo file_get_contents( "http://localhost/commen/api/seller_reseller_get_all.php?sellerkey=KEY" ); ?>
import requests
r = requests.get("http://localhost/commen/api/seller_reseller_get_all.php", params={
"sellerkey":"KEY"
})
print(r.text)
var client = new RestClient( "http://localhost/commen/api/seller_reseller_get_all.php?sellerkey=KEY" ); var res = client.Execute(new RestRequest(Method.GET)); Console.WriteLine(res.Content);