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).
:::warning experimental
This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.
:::
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.'
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
404
Not Found - returned if the request URL refers to a resource or object that does not exist
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.sed_batch_statsimportSedBatchStatsfromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintbatch_id='8c190e67-87aa-4ed9-a90b-d9d5344523fb'# str | Batch Id # str | Batch Idx_sail_point_experimental='true'# str | Use this header to enable this experimental API. (default to 'true') # str | Use this header to enable this experimental API. (default to 'true')try:# Submit Sed Batch Stats Requestapi_response=api_instance.get_sed_batch_stats(batch_id,x_sail_point_experimental)# Below is a request that includes all optional parameters# api_response = api_instance.get_sed_batch_stats(batch_id, x_sail_point_experimental)print("The response of SuggestedEntitlementDescriptionApi->get_sed_batch_stats:\n")pprint(api_response)exceptExceptionase:print("Exception when calling SuggestedEntitlementDescriptionApi->get_sed_batch_stats: %s\n"%e)
:::warning experimental
This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.
:::
List Sed Batch Request
List Sed Batches.
API responses with Sed Batch Status
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
404
Not Found - returned if the request URL refers to a resource or object that does not exist
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.sed_batch_statusimportSedBatchStatusfromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintx_sail_point_experimental='true'# str | Use this header to enable this experimental API. (default to 'true') # str | Use this header to enable this experimental API. (default to 'true')try:# List Sed Batch Requestapi_response=api_instance.get_sed_batches(x_sail_point_experimental)# Below is a request that includes all optional parameters# api_response = api_instance.get_sed_batches(x_sail_point_experimental)print("The response of SuggestedEntitlementDescriptionApi->get_sed_batches:\n")pprint(api_response)exceptExceptionase:print("Exception when calling SuggestedEntitlementDescriptionApi->get_sed_batches: %s\n"%e)
:::warning experimental
This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.
:::
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
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.
Query
filters
str
(optional)
Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: batchId: eq, nedisplayName: eq, ne, cosourceName: eq, ne, cosourceId: eq, nestatus: eq, nefullText: co
Query
sorters
str
(optional)
Sort results using the standard syntax described in V3 API Standard Collection Parameters Sorting is supported for the following fields: displayName, sourceName, status
Query
count
bool
(optional)
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. 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.
Query
count_only
bool
(optional)
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. This parameter differs from the Coun parameter in that this one skip executing the actual query and always return an empty array.
Query
requested_by_anyone
bool
(optional)
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
Query
show_pending_status_only
bool
(optional)
Will limit records to items that are in "suggested" or "approved" status
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
404
Not Found - returned if the request URL refers to a resource or object that does not exist
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.sedimportSedfromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintx_sail_point_experimental='true'# str | Use this header to enable this experimental API. (default to 'true') # str | Use this header to enable this experimental API. (default to 'true')limit=limit=25# int | 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) # int | 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)filters='displayName co \"Read and Write\"'# str | 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) # str | 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)sorters='sorters=displayName'# str | 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) # str | 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)count=count=true# bool | 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. 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 `count=true` if that value will not be used. (optional) # bool | 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. 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 `count=true` if that value will not be used. (optional)count_only=count-only=true# bool | 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. This parameter differs from the Coun parameter in that this one skip executing the actual query and always return an empty array. (optional) # bool | 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. This parameter differs from the Coun parameter in that this one skip executing the actual query and always return an empty array. (optional)requested_by_anyone=requested-by-anyone=true# bool | 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) # bool | 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)show_pending_status_only=show-pending-status-only=true# bool | Will limit records to items that are in \"suggested\" or \"approved\" status (optional) # bool | Will limit records to items that are in \"suggested\" or \"approved\" status (optional)try:# List Suggested Entitlement Descriptionsapi_response=api_instance.list_seds(x_sail_point_experimental,)# Below is a request that includes all optional parameters# api_response = api_instance.list_seds(x_sail_point_experimental, limit, filters, sorters, count, count_only, requested_by_anyone, show_pending_status_only)print("The response of SuggestedEntitlementDescriptionApi->list_seds:\n")pprint(api_response)exceptExceptionase:print("Exception when calling SuggestedEntitlementDescriptionApi->list_seds: %s\n"%e)
:::warning experimental
This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.
:::
Patch Suggested Entitlement Description
Patch Suggested Entitlement Description
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
404
Not Found - returned if the request URL refers to a resource or object that does not exist
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: application/json-patch+json
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.sedimportSedfromsailpoint.v2024.models.sed_patchimportSedPatchfromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintid='ebab396f-0af1-4050-89b7-dafc63ec70e7'# str | id is sed id # str | id is sed idx_sail_point_experimental='true'# str | Use this header to enable this experimental API. (default to 'true') # str | Use this header to enable this experimental API. (default to 'true')[sailpoint.v2024.SedPatch()]# List[SedPatch] | Sed Patch Requestsed_patch={"op":"replace","path":"status","value":"approved"}# List[SedPatch] | Sed Patch Requesttry:# Patch Suggested Entitlement DescriptionResult=sed_patch.from_json(sed_patch)api_response=api_instance.patch_sed(id,x_sail_point_experimental,Result)# Below is a request that includes all optional parameters# api_response = api_instance.patch_sed(id, x_sail_point_experimental, Result)print("The response of SuggestedEntitlementDescriptionApi->patch_sed:\n")pprint(api_response)exceptExceptionase:print("Exception when calling SuggestedEntitlementDescriptionApi->patch_sed: %s\n"%e)
:::warning experimental
This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.
:::
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
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
404
Not Found - returned if the request URL refers to a resource or object that does not exist
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: application/json-patch+json
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.sed_approvalimportSedApprovalfromsailpoint.v2024.models.sed_approval_statusimportSedApprovalStatusfromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintx_sail_point_experimental='true'# str | Use this header to enable this experimental API. (default to 'true') # str | Use this header to enable this experimental API. (default to 'true')[sailpoint.v2024.SedApproval()]# List[SedApproval] | Sed Approvalsed_approval={"items":"016629d1-1d25-463f-97f3-c6686846650"}# List[SedApproval] | Sed Approvaltry:# Submit Bulk Approval RequestResult=sed_approval.from_json(sed_approval)api_response=api_instance.submit_sed_approval(x_sail_point_experimental,Result)# Below is a request that includes all optional parameters# api_response = api_instance.submit_sed_approval(x_sail_point_experimental, Result)print("The response of SuggestedEntitlementDescriptionApi->submit_sed_approval:\n")pprint(api_response)exceptExceptionase:print("Exception when calling SuggestedEntitlementDescriptionApi->submit_sed_approval: %s\n"%e)
:::warning experimental
This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.
:::
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
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
404
Not Found - returned if the request URL refers to a resource or object that does not exist
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: application/json-patch+json
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.sed_assignmentimportSedAssignmentfromsailpoint.v2024.models.sed_assignment_responseimportSedAssignmentResponsefromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintx_sail_point_experimental='true'# str | Use this header to enable this experimental API. (default to 'true') # str | Use this header to enable this experimental API. (default to 'true')sed_assignment={"assignee":{"type":"SOURCE_OWNER","value":"016629d1-1d25-463f-97f3-c6686846650"},"items":["016629d1-1d25-463f-97f3-0c6686846650","016629d1-1d25-463f-97f3-0c6686846650"]}# SedAssignment | Sed Assignment Requesttry:# Submit Sed Assignment RequestResult=sed_assignment.from_json(sed_assignment)api_response=api_instance.submit_sed_assignment(x_sail_point_experimental,Result)# Below is a request that includes all optional parameters# api_response = api_instance.submit_sed_assignment(x_sail_point_experimental, Result)print("The response of SuggestedEntitlementDescriptionApi->submit_sed_assignment:\n")pprint(api_response)exceptExceptionase:print("Exception when calling SuggestedEntitlementDescriptionApi->submit_sed_assignment: %s\n"%e)
:::warning experimental
This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.
:::
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
Client Error - Returned if the request body is invalid.
ErrorResponseDto
-
401
Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.
ListAccessProfiles401Response
-
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
-
404
Not Found - returned if the request URL refers to a resource or object that does not exist
ErrorResponseDto
-
429
Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.
ListAccessProfiles429Response
-
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
-
HTTP request headers
Content-Type: application/json-patch+json
Accept: application/json
Example
importsailpoint.v2024fromsailpoint.v2024.models.sed_batch_requestimportSedBatchRequestfromsailpoint.v2024.models.sed_batch_responseimportSedBatchResponsefromsailpoint.v2024.restimportApiExceptionfrompprintimportpprintx_sail_point_experimental='true'# str | Use this header to enable this experimental API. (default to 'true') # str | Use this header to enable this experimental API. (default to 'true')sed_batch_request={"entitlements":["016629d1-1d25-463f-97f3-c6686846650","016629d1-1d25-463f-97f3-c6686846650"],"seds":["016629d1-1d25-463f-97f3-c6686846650","016629d1-1d25-463f-97f3-c6686846650"]}# SedBatchRequest | Sed Batch Request (optional)try:# Submit Sed Batch Requestapi_response=api_instance.submit_sed_batch_request(x_sail_point_experimental,)# Below is a request that includes all optional parameters# api_response = api_instance.submit_sed_batch_request(x_sail_point_experimental, Result)print("The response of SuggestedEntitlementDescriptionApi->submit_sed_batch_request:\n")pprint(api_response)exceptExceptionase:print("Exception when calling SuggestedEntitlementDescriptionApi->submit_sed_batch_request: %s\n"%e)