Seller Export Unused
End/Modify user data and sessions directly securely.
Returns all unused license keys in plain text format.
Each unused license key is returned on a new line.
Endpoint Details
GET
/api/seller_export_unused.php
Query Parameters
| Parameter | Required | Description |
|---|---|---|
| sellerkey | Yes | Seller API Key |
Text Response
UNUSED-KEY-1 UNUSED-KEY-2 UNUSED-KEY-3
Empty Response
No unused licenses
Code Examples
fetch("http://localhost/commen/api/seller_export_unused.php?sellerkey=KEY")
.then(r => r.text())
.then(console.log);
<?php echo file_get_contents( "http://localhost/commen/api/seller_export_unused.php?sellerkey=KEY" ); ?>
import requests
r = requests.get("http://localhost/commen/api/seller_export_unused.php", params={
"sellerkey":"KEY"
})
print(r.text)
var client = new RestClient( "http://localhost/commen/api/seller_export_unused.php?sellerkey=KEY" ); var res = client.Execute(new RestRequest(Method.GET)); Console.WriteLine(res.Content);