ClassifySourceApi
All URIs are relative to https://sailpoint.api.identitynow.com
| Method | HTTP request | Description |
|---|---|---|
| delete-classify-machine-account-from-source-v1 | DELETE /sources/v1/{sourceId}/classify | Cancel classify source's accounts process |
| get-classify-machine-account-from-source-status-v1 | GET /sources/v1/{sourceId}/classify | Source accounts classification status |
| send-classify-machine-account-from-source-v1 | POST /sources/v1/{sourceId}/classify | Classify source's all accounts |
delete-classify-machine-account-from-source-v1
Cancel classify source's accounts process Use this API to cancel account classification process on a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| sourceId | string | Source ID. | [default to undefined] |
Return type
(empty response body)
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
Example
import { ClassifySourceApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
const configuration = new Configuration();
const apiInstance = new ClassifySourceApi(configuration);
const sourceId: string = ef38f94347e94562b5bb8424a56397d8; // Source ID.
const result = await apiInstance.deleteClassifyMachineAccountFromSourceV1({ sourceId: sourceId });
console.log(result);
get-classify-machine-account-from-source-status-v1
Source accounts classification status Use this API to get the status of Machine Account Classification process for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| sourceId | string | Source ID. | [default to undefined] |
Return type
Sourceclassificationstatus
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
Example
import { ClassifySourceApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
const configuration = new Configuration();
const apiInstance = new ClassifySourceApi(configuration);
const sourceId: string = ef38f94347e94562b5bb8424a56397d8; // Source ID.
const result = await apiInstance.getClassifyMachineAccountFromSourceStatusV1({ sourceId: sourceId });
console.log(result);
send-classify-machine-account-from-source-v1
Classify source's all accounts Use this API to classify all the accounts from a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| sourceId | string | Source ID. | [default to undefined] |
Return type
SendClassifyMachineAccountFromSourceV1200Response
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
Example
import { ClassifySourceApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
const configuration = new Configuration();
const apiInstance = new ClassifySourceApi(configuration);
const sourceId: string = ef38f94347e94562b5bb8424a56397d8; // Source ID.
const result = await apiInstance.sendClassifyMachineAccountFromSourceV1({ sourceId: sourceId });
console.log(result);