Skip to main content

MachineAccountClassifyApi

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

MethodHTTP requestDescription
send-classify-machine-account-v1POST /accounts/v1/{id}/classifyClassify single machine account

send-classify-machine-account-v1

Classify single machine account Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.

API Spec

Parameters

NameTypeDescriptionNotes
idstringAccount ID.[default to undefined]
classificationMode`'default''ignoreManual''forceMachine'

Return type

SendClassifyMachineAccountV1200Response

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

Example

import { MachineAccountClassifyApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';

const configuration = new Configuration();
const apiInstance = new MachineAccountClassifyApi(configuration);
const id: string = ef38f94347e94562b5bb8424a56397d8; // Account ID.
const classificationMode: string = forceMachine; // Specifies how the accounts should be classified. default - uses criteria to classify account as machine or human, excludes accounts that were manually classified. ignoreManual - like default, but includes accounts that were manually classified. forceMachine - forces account to be classified as machine. forceHuman - forces account to be classified as human. (optional)
const result = await apiInstance.sendClassifyMachineAccountV1({ id: id });
console.log(result);

[Back to top]