Skip to main content

ClassifySourceApi

All URIs are relative to https://sailpoint.api.identitynow.com

MethodHTTP requestDescription
delete-classify-machine-account-from-source-v1DELETE /sources/v1/{sourceId}/classifyCancel classify source's accounts process
get-classify-machine-account-from-source-status-v1GET /sources/v1/{sourceId}/classifySource accounts classification status
send-classify-machine-account-from-source-v1POST /sources/v1/{sourceId}/classifyClassify 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.

API Spec

Parameters

NameTypeDescriptionNotes
sourceIdstringSource 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);

[Back to top]

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.

API Spec

Parameters

NameTypeDescriptionNotes
sourceIdstringSource 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);

[Back to top]

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.

API Spec

Parameters

NameTypeDescriptionNotes
sourceIdstringSource 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);

[Back to top]