Skip to main content

SuggestedEntitlementDescriptionApi

Use this API to implement Suggested Entitlement Description (SED) functionality. SED functionality leverages the power of LLM to generate suggested entitlement descriptions. Refer to GenAI Entitlement Descriptions to learn more about SED in Identity Security Cloud (ISC).

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

MethodHTTP requestDescription
approve-bulk-entitlement-recommendations-v1POST /entitlement-recommendations/v1/bulk-approveBulk approve entitlement recommendations
create-auto-write-settings-v1POST /suggested-entitlement-descriptions/v1/auto-write-settingsCreate auto-write settings for SED
get-auto-write-settings-v1GET /suggested-entitlement-descriptions/v1/auto-write-settingsGet auto-write settings for SED
get-sed-batch-stats-v1GET /suggested-entitlement-description-batches/v1/{batchId}/statsSubmit sed batch stats request
get-sed-batches-v1GET /suggested-entitlement-description-batches/v1List Sed Batch Record
list-pending-entitlement-recommendation-approvals-v1GET /entitlement-recommendations/v1/pending-approvalsList pending entitlement recommendation approvals
list-privileged-entitlement-recommendations-v1GET /privileged-recommendations/v1List privileged entitlement recommendations
list-seds-v1GET /suggested-entitlement-descriptions/v1List suggested entitlement descriptions
patch-entitlement-recommendation-v1PATCH /entitlement-recommendations/v1/{id}Update an entitlement recommendation
patch-sed-v1PATCH /suggested-entitlement-descriptions/v1Patch suggested entitlement description
submit-entitlement-recommendations-assignment-v1POST /entitlement-recommendations/v1/assignAssign entitlement recommendations for review
submit-sed-approval-v1POST /suggested-entitlement-description-approvals/v1Submit bulk approval request
submit-sed-assignment-v1POST /suggested-entitlement-description-assignments/v1Submit sed assignment request
submit-sed-batch-request-v1POST /suggested-entitlement-description-batches/v1Submit sed batch request
update-auto-write-settings-v1PATCH /suggested-entitlement-descriptions/v1/auto-write-settingsUpdate auto-write settings for SED

approve-bulk-entitlement-recommendations-v1

Bulk approve entitlement recommendations Approve multiple entitlement recommendations in a single request. Each item in the request must include the recommendation ID and, depending on the record type, either an approved description (SED items) or an approved privilege level (privilege items). Returns a per-item result indicating success or failure.

API Spec

Parameters

NameTypeDescriptionNotes
bulkapproveentitlementrecommendationrequestBulkapproveentitlementrecommendationrequestThe list of recommendation items to approve.

Return type

Array<Bulkapproveentitlementrecommendationresult>

HTTP request headers

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

Example

import { SuggestedEntitlementDescriptionApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Bulkapproveentitlementrecommendationrequest } from 'sailpoint-api-client/dist/suggested_entitlement_description/api';

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const bulkapproveentitlementrecommendationrequest: Bulkapproveentitlementrecommendationrequest = ; // The list of recommendation items to approve.
const result = await apiInstance.approveBulkEntitlementRecommendationsV1({ bulkapproveentitlementrecommendationrequest: bulkapproveentitlementrecommendationrequest });
console.log(result);

[Back to top]

create-auto-write-settings-v1

Create auto-write settings for SED Create the initial auto-write settings for a tenant. Returns 409 Conflict if settings already exist. Use PATCH to update existing settings.

API Spec

Parameters

NameTypeDescriptionNotes
autowritesettingAutowritesettingAuto-write settings to create

Return type

Autowritesettingresponse

HTTP request headers

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

Example

import { SuggestedEntitlementDescriptionApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Autowritesetting } from 'sailpoint-api-client/dist/suggested_entitlement_description/api';

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const autowritesetting: Autowritesetting = ; // Auto-write settings to create
const result = await apiInstance.createAutoWriteSettingsV1({ autowritesetting: autowritesetting });
console.log(result);

[Back to top]

get-auto-write-settings-v1

Get auto-write settings for SED Get the current auto-write configuration for the tenant, including the enabled state and source include/exclude lists.

API Spec

Parameters

This endpoint does not need any parameter.

Return type

Autowritesettingresponse

HTTP request headers

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

Example

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

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const result = await apiInstance.getAutoWriteSettingsV1({ });
console.log(result);

[Back to top]

get-sed-batch-stats-v1

Submit sed batch stats request 'Submit Sed Batch Stats Request.

Submits batchId in the path param (e.g. {batchId}/stats). API responses with stats of the batchId.'

API Spec

Parameters

NameTypeDescriptionNotes
batchIdstringBatch Id[default to undefined]

Return type

Sedbatchstats

HTTP request headers

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

Example

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

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const batchId: string = 8c190e67-87aa-4ed9-a90b-d9d5344523fb; // Batch Id
const result = await apiInstance.getSedBatchStatsV1({ batchId: batchId });
console.log(result);

[Back to top]

get-sed-batches-v1

List Sed Batch Record List Sed Batches. API responses with Sed Batch Records

API Spec

Parameters

NameTypeDescriptionNotes
offsetnumberOffset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in V3 API Standard Collection Parameters. The offset value is record-based, not page-based, and the index starts at 0.[optional] [default to 0]
limitnumberLimit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in V3 API Standard Collection Parameters. If it is not specified, a default limit is used.[optional] [default to 250]
countbooleanIf `true` it will populate the `X-Total-Count` response header with the number of results that would be returned if `limit` and `offset` were ignored. The standard syntax described in V3 API Standard Collection Parameters. Since requesting a total count can have a performance impact, it is recommended not to send `count=true` if that value will not be used.[optional] [default to false]
countOnlybooleanIf `true` it will populate the `X-Total-Count` response header with the number of results that would be returned if `limit` and `offset` were ignored. This parameter differs from the count parameter in that this one skips executing the actual query and always return an empty array.[optional] [default to false]
statusstringBatch Status[optional] [default to undefined]

Return type

Array<Sedbatchrecord>

HTTP request headers

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

Example

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

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const offset: number = 0; // Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0. (optional)
const limit: number = 250; // Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used. (optional)
const count: boolean = true; // If &#x60;true&#x60; it will populate the &#x60;X-Total-Count&#x60; response header with the number of results that would be returned if &#x60;limit&#x60; and &#x60;offset&#x60; were ignored. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). Since requesting a total count can have a performance impact, it is recommended not to send &#x60;count&#x3D;true&#x60; if that value will not be used. (optional)
const countOnly: boolean = true; // If &#x60;true&#x60; it will populate the &#x60;X-Total-Count&#x60; response header with the number of results that would be returned if &#x60;limit&#x60; and &#x60;offset&#x60; were ignored. This parameter differs from the count parameter in that this one skips executing the actual query and always return an empty array. (optional)
const status: string = completed, failed, submitted, materialized, failed; // Batch Status (optional)
const result = await apiInstance.getSedBatchesV1({ });
console.log(result);

[Back to top]

list-pending-entitlement-recommendation-approvals-v1

List pending entitlement recommendation approvals Returns a list of entitlement recommendations (SED and/or privilege) that are currently awaiting review or approval. Each record includes the recommendation type, entitlement details, and any AI-generated suggestions.

API Spec

Parameters

NameTypeDescriptionNotes
offsetnumberOffset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.[optional] [default to 0]
limitnumberMax number of results to return. See V3 API Standard Collection Parameters for more information.[optional] [default to 250]

Return type

Array<Entitlementrecommendationrecord>

HTTP request headers

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

Example

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

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const offset: number = 0; // Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const limit: number = 250; // Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const result = await apiInstance.listPendingEntitlementRecommendationApprovalsV1({ });
console.log(result);

[Back to top]

list-privileged-entitlement-recommendations-v1

List privileged entitlement recommendations Returns a list of privileged entitlement recommendation groups. Each group aggregates individual entitlement instances that share the same entitlement name and connector type, along with a recommendation score and instance count.

API Spec

Parameters

NameTypeDescriptionNotes
offsetnumberOffset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.[optional] [default to 0]
limitnumberMax number of results to return. See V3 API Standard Collection Parameters for more information.[optional] [default to 250]

Return type

Array<Privilegedrecommendationgroup>

HTTP request headers

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

Example

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

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const offset: number = 0; // Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const limit: number = 250; // Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const result = await apiInstance.listPrivilegedEntitlementRecommendationsV1({ });
console.log(result);

[Back to top]

list-seds-v1

List suggested entitlement descriptions List of Suggested Entitlement Descriptions (SED)

SED field descriptions:

batchId: the ID of the batch of entitlements that are submitted for description generation

displayName: the display name of the entitlement that we are generating a description for

sourceName: the name of the source associated with the entitlement that we are generating the description for

sourceId: the ID of the source associated with the entitlement that we are generating the description for

status: the status of the suggested entitlement description, valid status options: "requested", "suggested", "not_suggested", "failed", "assigned", "approved", "denied"

fullText: will filter suggested entitlement description records by text found in any of the following fields: entitlement name, entitlement display name, suggested description, source name

API Spec

Parameters

NameTypeDescriptionNotes
limitnumberMax number of results to return. See V3 API Standard Collection Parameters for more information.[optional] [default to 250]
offsetnumberOffset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.[optional] [default to 0]
countbooleanIf true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored. Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used. See V3 API Standard Collection Parameters for more information.[optional] [default to false]
filtersstringFilter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: batchId: eq, ne displayName: eq, ne, co sourceName: eq, ne, co sourceId: eq, ne status: eq, ne fullText: co[optional] [default to undefined]
sortersstringSort results using the standard syntax described in V3 API Standard Collection Parameters Sorting is supported for the following fields: displayName, sourceName, status[optional] [default to undefined]
countOnlybooleanIf `true` it will populate the `X-Total-Count` response header with the number of results that would be returned if `limit` and `offset` were ignored. This parameter differs from the count parameter in that this one skips executing the actual query and always return an empty array.[optional] [default to false]
requestedByAnyonebooleanBy default, the ListSeds API will only return items that you have requested to be generated. This option will allow you to see all items that have been requested[optional] [default to false]
showPendingStatusOnlybooleanWill limit records to items that are in &quot;suggested&quot; or &quot;approved&quot; status[optional] [default to false]

Return type

Array<Sed>

HTTP request headers

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

Example

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

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const limit: number = 250; // Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const offset: number = 0; // Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const count: boolean = true; // If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional)
const filters: string = displayName co "Read and Write"; // Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **batchId**: *eq, ne* **displayName**: *eq, ne, co* **sourceName**: *eq, ne, co* **sourceId**: *eq, ne* **status**: *eq, ne* **fullText**: *co* (optional)
const sorters: string = sorters=displayName; // Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **displayName, sourceName, status** (optional)
const countOnly: boolean = count-only=true; // If &#x60;true&#x60; it will populate the &#x60;X-Total-Count&#x60; response header with the number of results that would be returned if &#x60;limit&#x60; and &#x60;offset&#x60; were ignored. This parameter differs from the count parameter in that this one skips executing the actual query and always return an empty array. (optional)
const requestedByAnyone: boolean = requested-by-anyone=true; // By default, the ListSeds API will only return items that you have requested to be generated. This option will allow you to see all items that have been requested (optional)
const showPendingStatusOnly: boolean = show-pending-status-only=true; // Will limit records to items that are in \&quot;suggested\&quot; or \&quot;approved\&quot; status (optional)
const result = await apiInstance.listSedsV1({ });
console.log(result);

[Back to top]

patch-entitlement-recommendation-v1

Update an entitlement recommendation Partially update a single entitlement recommendation record by its ID. Use this endpoint to update the status, description, or privilege level of a specific SED or privilege recommendation.

API Spec

Parameters

NameTypeDescriptionNotes
idstringThe unique identifier of the entitlement recommendation to update.[default to undefined]
jsonpatchoperationArray<Jsonpatchoperation>The patch operations to apply to the entitlement recommendation record.

Return type

Entitlementrecommendationrecord

HTTP request headers

  • Content-Type: application/json-patch+json
  • Accept: application/json

Example

import { SuggestedEntitlementDescriptionApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Jsonpatchoperation } from 'sailpoint-api-client/dist/suggested_entitlement_description/api';

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const id: string = 79db50d4-723c-4aa0-a824-83c2205d82d1; // The unique identifier of the entitlement recommendation to update.
const jsonpatchoperation: Array<Jsonpatchoperation> = ; // The patch operations to apply to the entitlement recommendation record.
const result = await apiInstance.patchEntitlementRecommendationV1({ id: id, jsonpatchoperation: jsonpatchoperation });
console.log(result);

[Back to top]

patch-sed-v1

Patch suggested entitlement description Patch Suggested Entitlement Description

API Spec

Parameters

NameTypeDescriptionNotes
idstringid is sed id[default to undefined]
sedpatchArray<Sedpatch>Sed Patch Request

Return type

Sed

HTTP request headers

  • Content-Type: application/json-patch+json
  • Accept: application/json

Example

import { SuggestedEntitlementDescriptionApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Sedpatch } from 'sailpoint-api-client/dist/suggested_entitlement_description/api';

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const id: string = ebab396f-0af1-4050-89b7-dafc63ec70e7; // id is sed id
const sedpatch: Array<Sedpatch> = ; // Sed Patch Request
const result = await apiInstance.patchSedV1({ id: id, sedpatch: sedpatch });
console.log(result);

[Back to top]

submit-entitlement-recommendations-assignment-v1

Assign entitlement recommendations for review Assign a set of entitlement recommendation records to a reviewer. The assignee can be a specific identity, a governance group, or a role-based assignee such as source owner or entitlement owner. Returns a batch ID that can be used to track the assignment.

API Spec

Parameters

NameTypeDescriptionNotes
entitlementrecommendationassignrequestEntitlementrecommendationassignrequestThe recommendation IDs and the target assignee.

Return type

Entitlementrecommendationassignresult

HTTP request headers

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

Example

import { SuggestedEntitlementDescriptionApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Entitlementrecommendationassignrequest } from 'sailpoint-api-client/dist/suggested_entitlement_description/api';

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const entitlementrecommendationassignrequest: Entitlementrecommendationassignrequest = ; // The recommendation IDs and the target assignee.
const result = await apiInstance.submitEntitlementRecommendationsAssignmentV1({ entitlementrecommendationassignrequest: entitlementrecommendationassignrequest });
console.log(result);

[Back to top]

submit-sed-approval-v1

Submit bulk approval request Submit Bulk Approval Request for SED. Request body takes list of SED Ids. API responses with list of SED Approval Status

API Spec

Parameters

NameTypeDescriptionNotes
sedapprovalArray<Sedapproval>Sed Approval

Return type

Array<Sedapprovalstatus>

HTTP request headers

  • Content-Type: application/json-patch+json
  • Accept: application/json

Example

import { SuggestedEntitlementDescriptionApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Sedapproval } from 'sailpoint-api-client/dist/suggested_entitlement_description/api';

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const sedapproval: Array<Sedapproval> = ; // Sed Approval
const result = await apiInstance.submitSedApprovalV1({ sedapproval: sedapproval });
console.log(result);

[Back to top]

submit-sed-assignment-v1

Submit sed assignment request Submit Assignment Request. Request body has an assignee, and list of SED Ids that are assigned to that assignee API responses with batchId that groups all approval requests together

API Spec

Parameters

NameTypeDescriptionNotes
sedassignmentSedassignmentSed Assignment Request

Return type

Sedassignmentresponse

HTTP request headers

  • Content-Type: application/json-patch+json
  • Accept: application/json

Example

import { SuggestedEntitlementDescriptionApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Sedassignment } from 'sailpoint-api-client/dist/suggested_entitlement_description/api';

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const sedassignment: Sedassignment = ; // Sed Assignment Request
const result = await apiInstance.submitSedAssignmentV1({ sedassignment: sedassignment });
console.log(result);

[Back to top]

submit-sed-batch-request-v1

Submit sed batch request Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM. API responses with batchId that groups Ids together

API Spec

Parameters

NameTypeDescriptionNotes
sedbatchrequestSedbatchrequestSed Batch Request[optional]

Return type

Sedbatchresponse

HTTP request headers

  • Content-Type: application/json-patch+json
  • Accept: application/json

Example

import { SuggestedEntitlementDescriptionApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Sedbatchrequest } from 'sailpoint-api-client/dist/suggested_entitlement_description/api';

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const sedbatchrequest: Sedbatchrequest = ; // Sed Batch Request (optional)
const result = await apiInstance.submitSedBatchRequestV1({ });
console.log(result);

[Back to top]

update-auto-write-settings-v1

Update auto-write settings for SED Partially update the auto-write settings for a tenant using JSON Patch operations. Only the "replace" operation is supported. Returns 404 if no settings exist yet - use POST to create them first.

API Spec

Parameters

NameTypeDescriptionNotes
autowritesettingpatchArray<Autowritesettingpatch>Patch operations for auto-write settings

Return type

Autowritesettingresponse

HTTP request headers

  • Content-Type: application/json-patch+json
  • Accept: application/json

Example

import { SuggestedEntitlementDescriptionApi } from 'sailpoint-api-client';
import { Configuration } from 'sailpoint-api-client';
import { Autowritesettingpatch } from 'sailpoint-api-client/dist/suggested_entitlement_description/api';

const configuration = new Configuration();
const apiInstance = new SuggestedEntitlementDescriptionApi(configuration);
const autowritesettingpatch: Array<Autowritesettingpatch> = ; // Patch operations for auto-write settings
const result = await apiInstance.updateAutoWriteSettingsV1({ autowritesettingpatch: autowritesettingpatch });
console.log(result);

[Back to top]