Seller Manager List
End/Modify user data and sessions directly securely.
Fetch all manager accounts associated with this seller.
Endpoint Details
GET
/api/seller_manager_list.php
Query Parameters
| Parameter | Required | Description |
|---|---|---|
| sellerkey | Yes | Seller API Key |
Success Response
{
"success": true,
"total": 2,
"managers": [
{
"username": "manager1",
"email": "manager1@email.com",
"created_at": "2024-05-01 12:00:00"
}
]
}
Code Examples
fetch("http://localhost/commen/api/seller_manager_list.php?sellerkey=KEY")
.then(r => r.json())
.then(console.log);
<?php echo file_get_contents( "http://localhost/commen/api/seller_manager_list.php?sellerkey=KEY" ); ?>
import requests
r = requests.get("http://localhost/commen/api/seller_manager_list.php", params={
"sellerkey":"KEY"
})
print(r.text)
var client = new RestClient( "http://localhost/commen/api/seller_manager_list.php?sellerkey=KEY" ); var res = client.Execute(new RestRequest(Method.GET)); Console.WriteLine(res.Content);