Skip to content

License

Retrieve the license state

GET /license This endpoint retrieves the system license's state.

Request Example:

bash
curl --location '{{url}}/license' \
--header 'token;'

Retrieve the device ID

GET /license/deviceId This endpoint retrieves the system's device Id.

Request Example:

bash
curl --location '{{url}}/license/deviceID' \
--header 'token;'

Activate an online license

Post /license/online This endpoint activates an online license.

Request Example:

bash
curl --location '{{url}}/license/online' \
--header 'token: 2395526154963829306' \
--header 'Content-Type: application/json' \
--data '{
    "systemID": "{{systemId}}",
    "activationID": "{{activationId}}"
}'