All URIs are relative to https://subdomain.okta.com
Method | HTTP request | Description |
---|---|---|
getFeature | GET /api/v1/features/{featureId} | Retrieve a Feature |
listFeatureDependencies | GET /api/v1/features/{featureId}/dependencies | List all Dependencies |
listFeatureDependents | GET /api/v1/features/{featureId}/dependents | List all Dependents |
listFeatures | GET /api/v1/features | List all Features |
updateFeatureLifecycle | POST /api/v1/features/{featureId}/{lifecycle} | Update a Feature Lifecycle |
Feature getFeature()
Success
import { okta } from '@okta/okta-sdk-nodejs';
import * as fs from 'fs';
const configuration = okta.createConfiguration();
const apiInstance = new okta.FeatureApi(configuration);
let body:okta.FeatureApiGetFeatureRequest = {
// string
featureId: "featureId_example",
};
apiInstance.getFeature(body).then((data:any) => {
console.log('API called successfully. Returned data: ' + data);
}).catch((error:any) => console.error(error));
Name | Type | Description | Notes |
---|---|---|---|
featureId | [string] | defaults to undefined |
Feature
| Status code | Description | Response headers | |————-|————-|——————| 200 | Success | - | 403 | Forbidden | - | 404 | Not Found | - | 429 | Too Many Requests | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Array
listFeatureDependencies()
Success
import { okta } from '@okta/okta-sdk-nodejs';
import * as fs from 'fs';
const configuration = okta.createConfiguration();
const apiInstance = new okta.FeatureApi(configuration);
let body:okta.FeatureApiListFeatureDependenciesRequest = {
// string
featureId: "featureId_example",
};
apiInstance.listFeatureDependencies(body).then((data:any) => {
console.log('API called successfully. Returned data: ' + data);
}).catch((error:any) => console.error(error));
Name | Type | Description | Notes |
---|---|---|---|
featureId | [string] | defaults to undefined |
**Array
| Status code | Description | Response headers | |————-|————-|——————| 200 | Success | - | 403 | Forbidden | - | 404 | Not Found | - | 429 | Too Many Requests | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Array
listFeatureDependents()
Success
import { okta } from '@okta/okta-sdk-nodejs';
import * as fs from 'fs';
const configuration = okta.createConfiguration();
const apiInstance = new okta.FeatureApi(configuration);
let body:okta.FeatureApiListFeatureDependentsRequest = {
// string
featureId: "featureId_example",
};
apiInstance.listFeatureDependents(body).then((data:any) => {
console.log('API called successfully. Returned data: ' + data);
}).catch((error:any) => console.error(error));
Name | Type | Description | Notes |
---|---|---|---|
featureId | [string] | defaults to undefined |
**Array
| Status code | Description | Response headers | |————-|————-|——————| 200 | Success | - | 403 | Forbidden | - | 404 | Not Found | - | 429 | Too Many Requests | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Array
listFeatures()
Success
import { okta } from '@okta/okta-sdk-nodejs';
import * as fs from 'fs';
const configuration = okta.createConfiguration();
const apiInstance = new okta.FeatureApi(configuration);
let body:any = {};
apiInstance.listFeatures(body).then((data:any) => {
console.log('API called successfully. Returned data: ' + data);
}).catch((error:any) => console.error(error));
This endpoint does not need any parameter.
**Array
| Status code | Description | Response headers | |————-|————-|——————| 200 | Success | - | 403 | Forbidden | - | 429 | Too Many Requests | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Feature updateFeatureLifecycle()
Success
import { okta } from '@okta/okta-sdk-nodejs';
import * as fs from 'fs';
const configuration = okta.createConfiguration();
const apiInstance = new okta.FeatureApi(configuration);
let body:okta.FeatureApiUpdateFeatureLifecycleRequest = {
// string
featureId: "featureId_example",
// string
lifecycle: "lifecycle_example",
// string (optional)
mode: "mode_example",
};
apiInstance.updateFeatureLifecycle(body).then((data:any) => {
console.log('API called successfully. Returned data: ' + data);
}).catch((error:any) => console.error(error));
Name | Type | Description | Notes |
---|---|---|---|
featureId | [string] | defaults to undefined | |
lifecycle | [string] | defaults to undefined | |
mode | [string] | (optional) defaults to undefined |
Feature
| Status code | Description | Response headers | |————-|————-|——————| 200 | Success | - | 403 | Forbidden | - | 404 | Not Found | - | 429 | Too Many Requests | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]