Skip to main content

Register License

To register a license for KnoxConfigure, use the following methods

Example

import { KnoxInstance } from '@redredgroup/samsungknox-api';
const instance = new KnoxInstance({
region: 'YOUR_KNOX_REGION',
knoxAccessToken: 'YOUR_JWT_TOKEN',
});

const registerLicense = await instance.kcLicense.registerLicense({
args: {
licenseKey: 'YOUR_LICENSE_KEY',
licenseName: 'YOUR_LICENSE_NAME',
},
});

console.log(registerLicense);

Input parameters:

  • args: Insert parameters for the profile (required) licenseKey and licenseName.
  • region: Insert the Knox region. Most of them are EU (case insensitive)
  • knoxAccessToken: Your X-KNOX-APITOKEN.

Output:

  • Responds with the result of the registered license.