Interactive web application for testing License Manager API operations.
URL: https://license-app-demo.botble.com
- Test API connection
- Activate licenses
- Verify license validity
- Deactivate licenses
- List and view products
- List and view licenses
- Create new licenses
- Block/unblock licenses
- PHP 7.4+ with cURL extension
- Web server (Apache/Nginx)
- HTTPS recommended
-
Copy files to your web server:
cp -r demo-app/ /var/www/license-demo/
-
Set proper permissions:
chmod 644 /var/www/license-demo/*.php chmod 644 /var/www/license-demo/.htaccess -
Configure your web server to point to the directory
-
Access via browser:
https://your-domain.com/
- Enter your License Manager API URL (e.g.,
https://license.botble.com) - Enter your External API Key
- Enter your Product Reference ID
- Enter your License Code
- Enter your Client Name
- Enter your License Manager API URL
- Enter your Internal API Key (with elevated permissions)
| Endpoint | Method | Purpose |
|---|---|---|
/api/external/connection-check |
GET | Test connectivity |
/api/external/license/activate |
POST | Activate license |
/api/external/license/verify |
POST | Verify license |
/api/external/license/deactivate |
POST | Deactivate license |
| Endpoint | Method | Purpose |
|---|---|---|
/api/internal/connection-check |
GET | Test connectivity |
/api/internal/products |
GET | List products |
/api/internal/products/{id} |
GET | Get product |
/api/internal/product-licenses |
GET | List licenses |
/api/internal/product-licenses |
POST | Create license |
/api/internal/blocked-product-licenses/{id} |
POST/DELETE | Block/unblock |
Content-Type: application/json
X-API-KEY: {your-api-key}
X-API-URL: {your-app-url}
X-API-IP: {your-server-ip}
- All configuration is stored in PHP session (server-side)
- Credentials are never exposed in URLs
- HTTPS is enforced via .htaccess
- API keys are masked in request display
demo-app/
├── index.php # External API demo
├── internal.php # Internal API demo
├── api.php # Shared API functions
├── .htaccess # Apache security config
└── README.md # This file
- Full API Documentation: https://docs.botble.com/license-manager
- Support: https://botble.com/contact
Part of License Manager plugin by Botble Technologies.