Get Applications (Many)
Get Knox Configure Applications
To Get the applications of KnoxConfigure, use the following methods.
Example
- class
- function
import { KnoxInstance } from '@redredgroup/samsungknox-api';
const instance = new KnoxInstance({
region: 'YOUR_KNOX_REGION',
knoxAccessToken: 'YOUR_JWT_TOKEN',
});
const kcGetApplication = await instance.kcContentManagementApplication.getApplications({
args: {}, // <- other optional param
});
console.log(kcGetApplication);
import { kcGetApplications } from '@redredgroup/samsungknox-api';
const kcGetApplication = await kcGetApplications({
args: {}, // <- other optional param
region: 'YOUR_KNOX_REGION',
knoxAccessToken: 'YOUR_JWT_TOKEN',
});
console.log(kcGetApplication);
Input parameters:
- args: Insert params for the get applications (optional) See this document for more params. : https://docs.samsungknox.com/dev/knox-configure/api/#tag/Content-Management-Application-APIs/operation/getApplicationListUsingGET
- region: Insert the Knox region. Most of them are EU (case insensitive)
- knoxAccessToken: Your X-KNOX-APITOKEN.
Output:
- All the details about the application are displayed.