Add a product license to the Floating Server.
Use this for both key-based and user-based licenses.
URL: /api/v4/addProduct Method: GET Accept: application/json
/api/v4/addProduct
GET
application/json
product (string, required) — Product code.
product
licenseKey (string, optional) — License key (key-based auth).
licenseKey
username (string, optional) — Username (user-based auth).
username
password (string, optional) — Password (user-based auth).
password
Pass either licenseKey or username + password. Which one works depends on the product’s authorization method.
Code: 200 OK
200 OK
Key auth:
curl -X GET 'http://localhost:8080/api/v4/addProduct?product=<product-code>&licenseKey=<license-key>' \ -H 'Accept: application/json'
User auth:
Last updated 5 months ago
Was this helpful?
curl -X GET 'http://localhost:8080/api/v4/addProduct?product=<product-code>&username=<username>&password=<password>' \ -H 'Accept: application/json'