Sofar logo
Sofar logo
Api
Activate a license POSTClaim a license for a controller POSTGet licenses linked to a controller by nodeId GETGet licenses for a customer GET
License

Activate a license POST

Set the activation date for a license to the current timestamp

Get licenses linked to a controller by nodeId GET

Retrieve all licenses that are linked to a specific controller identified by its nodeId

POST
/v1/license/claim

Link a license to a controller by creating an entry in license_datalink

Authorization

accessBearerAuth
AuthorizationBearer <token>

In the value field below, fill in the access token. It has a 10 minutes validity period. A valid token can be obtained via the /accesstoken endpoint (call), AFTER authorization with refreshBearerAuth and the refresh token.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://api.eniris.be/v1/license/claim" \  -H "Content-Type: application/json" \  -d '{    "licenseKey": "string",    "nodeId": "string"  }'
licenseKey*string
Length1 <= length <= 50
nodeId*string
Length1 <= length

The license key to claim

The nodeId of the controller to link the license to

application/json

{
  "success": true,
  "license": {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "key": "string",
    "nodeId": "string"
  }
}
{
  "statusCode": 400,
  "error": "Bad Request",
  "message": "Missing or misformatted query parameter or body"
}
{
  "statusCode": 401,
  "error": "Unauthorized",
  "message": "Failed to verify token"
}
{
  "statusCode": 404,
  "error": "Not Found",
  "message": "Resource not found"
}