Generate offline license request

Generate an offline license request payload.

URL: /api/v4/license/generate Method: POST Content-Type: application/json Accept: application/json

Request body

{
  "product": "string (optional)",
  "license_key": "string (optional)"
}
circle-info

An empty JSON body ({}) is accepted.

Success response

Code: 200 OK

Example request

curl -X POST 'http://localhost:8080/api/v4/license/generate' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{"product":"<product-code>","license_key":"<license-key>"}'

Last updated

Was this helpful?