License API Documentation
Welcome to the License API documentation. Below, you'll find detailed explanations of each API endpoint and how to integrate them into your application using PHP. The example code provided will help you to interact with the API seamlessly.
Make an API Request
Available API Endpoints
1. Suspend License
Suspend a license for a given product code and IP address.
https://api.licenseapis.com/suspend?api_key=YOUR_API_KEY&product_code=PRODUCT_CODE&ip_address=IP_ADDRESS
Example PHP Code:
<?php
$apiKey = 'YOUR_API_KEY';
$productCode = 'PRODUCT_CODE';
$ipAddress = 'IP_ADDRESS';
$url = "https://api.licenseapis.com/suspend?api_key=$apiKey&product_code=$productCode&ip_address=$ipAddress";
$response = file_get_contents($url);
$data = json_decode($response, true);
if ($data['status'] == 'success') {
echo 'License successfully suspended!';
} else {
echo 'Failed to suspend license.';
}
?>
2. Unsuspend License
Unsuspend a previously suspended license for a given product code and IP address.
https://api.licenseapis.com/unsuspend?api_key=YOUR_API_KEY&product_code=PRODUCT_CODE&ip_address=IP_ADDRESS
Example PHP Code:
<?php
$apiKey = 'YOUR_API_KEY';
$productCode = 'PRODUCT_CODE';
$ipAddress = 'IP_ADDRESS';
$url = "https://api.licenseapis.com/unsuspend?api_key=$apiKey&product_code=$productCode&ip_address=$ipAddress";
$response = file_get_contents($url);
$data = json_decode($response, true);
if ($data['status'] == 'success') {
echo 'License successfully unsuspended!';
} else {
echo 'Failed to unsuspend license.';
}
?>
3. Create License
Create a new license for a given product code and IP address.
https://api.licenseapis.com/create-license?api_key=YOUR_API_KEY&product_code=PRODUCT_CODE&ip_address=IP_ADDRESS
Example PHP Code:
<?php
$apiKey = 'YOUR_API_KEY';
$productCode = 'PRODUCT_CODE';
$ipAddress = 'IP_ADDRESS';
$url = "https://api.licenseapis.com/create-license?api_key=$apiKey&product_code=$productCode&ip_address=$ipAddress";
$response = file_get_contents($url);
$data = json_decode($response, true);
if ($data['status'] == 'success') {
echo 'License successfully created!';
} else {
echo 'Failed to create license.';
}
?>
4. Terminate License
Terminate a license for a given product code and IP address.
https://api.licenseapis.com/terminate?api_key=YOUR_API_KEY&product_code=PRODUCT_CODE&ip_address=IP_ADDRESS
Example PHP Code:
<?php
$apiKey = 'YOUR_API_KEY';
$productCode = 'PRODUCT_CODE';
$ipAddress = 'IP_ADDRESS';
$url = "https://api.licenseapis.com/terminate?api_key=$apiKey&product_code=$productCode&ip_address=$ipAddress";
$response = file_get_contents($url);
$data = json_decode($response, true);
if ($data['status'] == 'success') {
echo 'License successfully terminated!';
} else {
echo 'Failed to terminate license.';
}
?>
5. Product List
Get the list of all available products.
https://api.licenseapis.com/productList?api_key=YOUR_API_KEY