Add License From File
using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/License");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("\"<string>\"", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify('<string>')
};
fetch('http://localhost:56350/api/v1/License', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "56350",
CURLOPT_URL => "http://localhost:56350/api/v1/License",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode('<string>'),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "http://localhost:56350/api/v1/License"
payload = "<string>"
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify('<string>')
};
fetch('http://localhost:56350/api/v1/License', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"Reason": "<string>",
"CanBeActivated": true,
"New": {
"CompanyName": "<string>",
"SerialNr": "<string>",
"OwnerName": "<string>",
"OwnerDescription": "<string>",
"NextCheckDate": "2023-11-07T05:31:56Z",
"MaintenanceDate": "2023-11-07T05:31:56Z",
"AdminWarningDate": "2023-11-07T05:31:56Z",
"ExpiryDate": "2023-11-07T05:31:56Z",
"GraceDate": "2023-11-07T05:31:56Z",
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"LicenseUrl": "<string>",
"LicenseVersion": "<string>",
"DeploymentType": 123,
"ProductType": "<string>",
"ProductDescription": "<string>",
"ModuleLicenses": [
{
"OwnerName": "<string>",
"ModuleName": "<string>",
"ModuleDescription": "<string>",
"ModuleTooltip": "<string>",
"ModuleVersion": "<string>",
"LicenseType": "Unknown",
"Unrestricted": true,
"AllowedUserType": "Unknown",
"NumberOfLicenses": 123,
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"SortOrder": 123,
"IsHidden": true,
"PrerequisiteModuleName": "<string>",
"Signature": "<string>"
}
],
"PublicKey": {
"OwnerName": "<string>",
"SignDate": "2023-11-07T05:31:56Z",
"ExpiryDate": "2023-11-07T05:31:56Z",
"Key": {
"P": "aSDinaTvuI8gbWludGxpZnk=",
"Q": "aSDinaTvuI8gbWludGxpZnk=",
"G": "aSDinaTvuI8gbWludGxpZnk=",
"Y": "aSDinaTvuI8gbWludGxpZnk=",
"J": "aSDinaTvuI8gbWludGxpZnk=",
"Seed": "aSDinaTvuI8gbWludGxpZnk=",
"Counter": 123
},
"Signature": "<string>"
},
"Signature": "<string>"
},
"Current": {
"CompanyName": "<string>",
"SerialNr": "<string>",
"OwnerName": "<string>",
"OwnerDescription": "<string>",
"NextCheckDate": "2023-11-07T05:31:56Z",
"MaintenanceDate": "2023-11-07T05:31:56Z",
"AdminWarningDate": "2023-11-07T05:31:56Z",
"ExpiryDate": "2023-11-07T05:31:56Z",
"GraceDate": "2023-11-07T05:31:56Z",
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"LicenseUrl": "<string>",
"LicenseVersion": "<string>",
"DeploymentType": 123,
"ProductType": "<string>",
"ProductDescription": "<string>",
"ModuleLicenses": [
{
"OwnerName": "<string>",
"ModuleName": "<string>",
"ModuleDescription": "<string>",
"ModuleTooltip": "<string>",
"ModuleVersion": "<string>",
"LicenseType": "Unknown",
"Unrestricted": true,
"AllowedUserType": "Unknown",
"NumberOfLicenses": 123,
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"SortOrder": 123,
"IsHidden": true,
"PrerequisiteModuleName": "<string>",
"Signature": "<string>"
}
],
"PublicKey": {
"OwnerName": "<string>",
"SignDate": "2023-11-07T05:31:56Z",
"ExpiryDate": "2023-11-07T05:31:56Z",
"Key": {
"P": "aSDinaTvuI8gbWludGxpZnk=",
"Q": "aSDinaTvuI8gbWludGxpZnk=",
"G": "aSDinaTvuI8gbWludGxpZnk=",
"Y": "aSDinaTvuI8gbWludGxpZnk=",
"J": "aSDinaTvuI8gbWludGxpZnk=",
"Seed": "aSDinaTvuI8gbWludGxpZnk=",
"Counter": 123
},
"Signature": "<string>"
},
"Signature": "<string>"
},
"ExtendedModuleLicenses": [
{
"New": {
"OwnerName": "<string>",
"ModuleName": "<string>",
"ModuleDescription": "<string>",
"ModuleTooltip": "<string>",
"ModuleVersion": "<string>",
"LicenseType": "Unknown",
"Unrestricted": true,
"AllowedUserType": "Unknown",
"NumberOfLicenses": 123,
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"SortOrder": 123,
"IsHidden": true,
"PrerequisiteModuleName": "<string>",
"Signature": "<string>"
},
"Current": {
"OwnerName": "<string>",
"ModuleName": "<string>",
"ModuleDescription": "<string>",
"ModuleTooltip": "<string>",
"ModuleVersion": "<string>",
"LicenseType": "Unknown",
"Unrestricted": true,
"AllowedUserType": "Unknown",
"NumberOfLicenses": 123,
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"SortOrder": 123,
"IsHidden": true,
"PrerequisiteModuleName": "<string>",
"Signature": "<string>"
},
"NumberOfLicensesInUse": 123,
"NumberOfLicensesFree": 123,
"NumberOfLicensesAdded": 123,
"NumberOfLicensesNewTotal": 123,
"NumberOfLicensesNewFree": 123,
"NumberOfLicensesTotal": 123
}
],
"AccumulatedNextCheckDate": "2023-11-07T05:31:56Z"
}Add License From File
Load and activate a new license from file/string if the new license is valid.
Add License From File
using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/License");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("\"<string>\"", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify('<string>')
};
fetch('http://localhost:56350/api/v1/License', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "56350",
CURLOPT_URL => "http://localhost:56350/api/v1/License",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode('<string>'),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "http://localhost:56350/api/v1/License"
payload = "<string>"
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify('<string>')
};
fetch('http://localhost:56350/api/v1/License', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"Reason": "<string>",
"CanBeActivated": true,
"New": {
"CompanyName": "<string>",
"SerialNr": "<string>",
"OwnerName": "<string>",
"OwnerDescription": "<string>",
"NextCheckDate": "2023-11-07T05:31:56Z",
"MaintenanceDate": "2023-11-07T05:31:56Z",
"AdminWarningDate": "2023-11-07T05:31:56Z",
"ExpiryDate": "2023-11-07T05:31:56Z",
"GraceDate": "2023-11-07T05:31:56Z",
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"LicenseUrl": "<string>",
"LicenseVersion": "<string>",
"DeploymentType": 123,
"ProductType": "<string>",
"ProductDescription": "<string>",
"ModuleLicenses": [
{
"OwnerName": "<string>",
"ModuleName": "<string>",
"ModuleDescription": "<string>",
"ModuleTooltip": "<string>",
"ModuleVersion": "<string>",
"LicenseType": "Unknown",
"Unrestricted": true,
"AllowedUserType": "Unknown",
"NumberOfLicenses": 123,
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"SortOrder": 123,
"IsHidden": true,
"PrerequisiteModuleName": "<string>",
"Signature": "<string>"
}
],
"PublicKey": {
"OwnerName": "<string>",
"SignDate": "2023-11-07T05:31:56Z",
"ExpiryDate": "2023-11-07T05:31:56Z",
"Key": {
"P": "aSDinaTvuI8gbWludGxpZnk=",
"Q": "aSDinaTvuI8gbWludGxpZnk=",
"G": "aSDinaTvuI8gbWludGxpZnk=",
"Y": "aSDinaTvuI8gbWludGxpZnk=",
"J": "aSDinaTvuI8gbWludGxpZnk=",
"Seed": "aSDinaTvuI8gbWludGxpZnk=",
"Counter": 123
},
"Signature": "<string>"
},
"Signature": "<string>"
},
"Current": {
"CompanyName": "<string>",
"SerialNr": "<string>",
"OwnerName": "<string>",
"OwnerDescription": "<string>",
"NextCheckDate": "2023-11-07T05:31:56Z",
"MaintenanceDate": "2023-11-07T05:31:56Z",
"AdminWarningDate": "2023-11-07T05:31:56Z",
"ExpiryDate": "2023-11-07T05:31:56Z",
"GraceDate": "2023-11-07T05:31:56Z",
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"LicenseUrl": "<string>",
"LicenseVersion": "<string>",
"DeploymentType": 123,
"ProductType": "<string>",
"ProductDescription": "<string>",
"ModuleLicenses": [
{
"OwnerName": "<string>",
"ModuleName": "<string>",
"ModuleDescription": "<string>",
"ModuleTooltip": "<string>",
"ModuleVersion": "<string>",
"LicenseType": "Unknown",
"Unrestricted": true,
"AllowedUserType": "Unknown",
"NumberOfLicenses": 123,
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"SortOrder": 123,
"IsHidden": true,
"PrerequisiteModuleName": "<string>",
"Signature": "<string>"
}
],
"PublicKey": {
"OwnerName": "<string>",
"SignDate": "2023-11-07T05:31:56Z",
"ExpiryDate": "2023-11-07T05:31:56Z",
"Key": {
"P": "aSDinaTvuI8gbWludGxpZnk=",
"Q": "aSDinaTvuI8gbWludGxpZnk=",
"G": "aSDinaTvuI8gbWludGxpZnk=",
"Y": "aSDinaTvuI8gbWludGxpZnk=",
"J": "aSDinaTvuI8gbWludGxpZnk=",
"Seed": "aSDinaTvuI8gbWludGxpZnk=",
"Counter": 123
},
"Signature": "<string>"
},
"Signature": "<string>"
},
"ExtendedModuleLicenses": [
{
"New": {
"OwnerName": "<string>",
"ModuleName": "<string>",
"ModuleDescription": "<string>",
"ModuleTooltip": "<string>",
"ModuleVersion": "<string>",
"LicenseType": "Unknown",
"Unrestricted": true,
"AllowedUserType": "Unknown",
"NumberOfLicenses": 123,
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"SortOrder": 123,
"IsHidden": true,
"PrerequisiteModuleName": "<string>",
"Signature": "<string>"
},
"Current": {
"OwnerName": "<string>",
"ModuleName": "<string>",
"ModuleDescription": "<string>",
"ModuleTooltip": "<string>",
"ModuleVersion": "<string>",
"LicenseType": "Unknown",
"Unrestricted": true,
"AllowedUserType": "Unknown",
"NumberOfLicenses": 123,
"ExtraFlags": 123,
"ExtraInfo": "<string>",
"SortOrder": 123,
"IsHidden": true,
"PrerequisiteModuleName": "<string>",
"Signature": "<string>"
},
"NumberOfLicensesInUse": 123,
"NumberOfLicensesFree": 123,
"NumberOfLicensesAdded": 123,
"NumberOfLicensesNewTotal": 123,
"NumberOfLicensesNewFree": 123,
"NumberOfLicensesTotal": 123
}
],
"AccumulatedNextCheckDate": "2023-11-07T05:31:56Z"
}Headers
Convert string references and multi-language values into a specified language (iso2) code.
Convert string references and multi-language values into a specified language (iso2) code. Overrides Accept-Language value.
Number, date formatting in a specified culture (iso2 language) code. Partially overrides SO-Language/Accept-Language value. Ignored if no Language set.
Specify the timezone code that you would like date/time responses converted to.
The application token that identifies the partner app. Used when calling Online WebAPI from a server.
Body
application/jsontext/jsonapplication/xmltext/xmlapplication/x-www-form-urlencodedtext/plainapplication/json-patch+jsonapplication/merge-patch+json
Content of the license file as XML.
The body is of type string.
Related topics
Add License From FileNSLicenseAgentGet License From FileWork with external documents (knowledge base)Markdown guideActivate license⌘I