Use this API to implement and manage "separation of duties" (SOD) policies.
With SOD policy functionality in place, administrators can organize the access in their tenants to prevent individuals from gaining conflicting or excessive access.
"Separation of duties" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data.
For example, people who record monetary transactions shouldn't be able to issue payment for those transactions.
Any changes to major system configurations should be approved by someone other than the person requesting the change.
Organizations can use "separation of duties" (SOD) policies to enforce and track their internal security rules throughout their tenants.
These SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access.
To create SOD policies in Identity Security Cloud, administrators use 'Search' and then access 'Policies'.
To create a policy, they must configure two lists of access items. Each access item can only be added to one of the two lists.
They can search for the entitlements they want to add to these access lists.
>Note: You can have a maximum of 500 policies of any type (including general policies) in your organization. In each access-based SOD policy, you can have a maximum of 50 entitlements in each access list.
Once a SOD policy is in place, if an identity has access items on both lists, a SOD violation will trigger.
These violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.
The other users can then better help to enforce these SOD policies.
To create a subscription to a SOD policy in Identity Security Cloud, administrators use 'Search' and then access 'Layers'.
They can create a subscription to the policy and schedule it to run at a regular interval.
Create SOD policy
This creates both General and Conflicting Access Based policy, with a limit of 50 entitlements for each (left & right) criteria for Conflicting Access Based SOD policy.
Requires role of ORG_ADMIN.
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
-
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
Accept: application/json
Example
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.sod_policyimportSodPolicyfromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:sod_policy='''{
"conflictingAccessCriteria" : {
"leftCriteria" : {
"name" : "money-in",
"criteriaList" : [ {
"type" : "ENTITLEMENT",
"id" : "2c9180866166b5b0016167c32ef31a66",
"name" : "Administrator"
}, {
"type" : "ENTITLEMENT",
"id" : "2c9180866166b5b0016167c32ef31a67",
"name" : "Administrator"
} ]
},
"rightCriteria" : {
"name" : "money-in",
"criteriaList" : [ {
"type" : "ENTITLEMENT",
"id" : "2c9180866166b5b0016167c32ef31a66",
"name" : "Administrator"
}, {
"type" : "ENTITLEMENT",
"id" : "2c9180866166b5b0016167c32ef31a67",
"name" : "Administrator"
} ]
}
},
"ownerRef" : {
"name" : "Support",
"id" : "2c9180a46faadee4016fb4e018c20639",
"type" : "IDENTITY"
},
"created" : "2020-01-01T00:00:00Z",
"scheduled" : true,
"creatorId" : "0f11f2a4-7c94-4bf3-a2bd-742580fe3bde",
"modifierId" : "0f11f2a4-7c94-4bf3-a2bd-742580fe3bde",
"description" : "This policy ensures compliance of xyz",
"violationOwnerAssignmentConfig" : {
"assignmentRule" : "MANAGER",
"ownerRef" : {
"name" : "Support",
"id" : "2c9180a46faadee4016fb4e018c20639",
"type" : "IDENTITY"
}
},
"correctionAdvice" : "Based on the role of the employee, managers should remove access that is not required for their job function.",
"type" : "GENERAL",
"tags" : [ "TAG1", "TAG2" ],
"name" : "policy-xyz",
"modified" : "2020-01-01T00:00:00Z",
"policyQuery" : "@access(id:0f11f2a4-7c94-4bf3-a2bd-742580fe3bdg) AND @access(id:0f11f2a4-7c94-4bf3-a2bd-742580fe3bdf)",
"compensatingControls" : "Have a manager review the transaction decisions for their \"out of compliance\" employee",
"id" : "0f11f2a4-7c94-4bf3-a2bd-742580fe3bde",
"state" : "ENFORCED",
"externalPolicyReference" : "XYZ policy"
}'''# SodPolicy | try:# Create SOD policynew_sod_policy=SodPolicy.from_json(sod_policy)results=SODPoliciesApi(api_client).create_sod_policy(sod_policy=new_sod_policy)# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).create_sod_policy(new_sod_policy)print("The response of SODPoliciesApi->create_sod_policy:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->create_sod_policy: %s\n"%e)
Indicates whether this is a soft delete (logical true) or a hard delete. Soft delete marks the policy as deleted and just save it with this status. It could be fully deleted or recovered further. Hard delete vise versa permanently delete SOD request during this call.
Return type
(empty response body)
Responses
Code
Description
Data Type
Response headers
204
No content.
-
400
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
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:id='ef38f943-47e9-4562-b5bb-8424a56397d8'# str | The ID of the SOD Policy to delete. # str | The ID of the SOD Policy to delete.logical=True# bool | Indicates whether this is a soft delete (logical true) or a hard delete. Soft delete marks the policy as deleted and just save it with this status. It could be fully deleted or recovered further. Hard delete vise versa permanently delete SOD request during this call. (optional) (default to True) # bool | Indicates whether this is a soft delete (logical true) or a hard delete. Soft delete marks the policy as deleted and just save it with this status. It could be fully deleted or recovered further. Hard delete vise versa permanently delete SOD request during this call. (optional) (default to True)try:# Delete SOD policy by IDSODPoliciesApi(api_client).delete_sod_policy(id=id)# Below is a request that includes all optional parameters# SODPoliciesApi(api_client).delete_sod_policy(id, logical)exceptExceptionase:print("Exception when calling SODPoliciesApi->delete_sod_policy: %s\n"%e)
The ID of the SOD policy the schedule must be deleted for.
Return type
(empty response body)
Responses
Code
Description
Data Type
Response headers
204
No content response.
-
400
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
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:id='ef38f943-47e9-4562-b5bb-8424a56397d8'# str | The ID of the SOD policy the schedule must be deleted for. # str | The ID of the SOD policy the schedule must be deleted for.try:# Delete SOD policy scheduleSODPoliciesApi(api_client).delete_sod_policy_schedule(id=id)# Below is a request that includes all optional parameters# SODPoliciesApi(api_client).delete_sod_policy_schedule(id)exceptExceptionase:print("Exception when calling SODPoliciesApi->delete_sod_policy_schedule: %s\n"%e)
Returns the zip file with given custom name that contains the violation report file.
bytearray
-
400
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/zip, application/json
Example
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:report_result_id='ef38f94347e94562b5bb8424a56397d8'# str | The ID of the report reference to download. # str | The ID of the report reference to download.file_name='custom-name'# str | Custom Name for the file. # str | Custom Name for the file.try:# Download custom violation reportresults=SODPoliciesApi(api_client).get_custom_violation_report(report_result_id=report_result_id,file_name=file_name)# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).get_custom_violation_report(report_result_id, file_name)print("The response of SODPoliciesApi->get_custom_violation_report:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->get_custom_violation_report: %s\n"%e)
Returns the PolicyReport.zip that contains the violation report file.
bytearray
-
400
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/zip, application/json
Example
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:report_result_id='ef38f94347e94562b5bb8424a56397d8'# str | The ID of the report reference to download. # str | The ID of the report reference to download.try:# Download violation reportresults=SODPoliciesApi(api_client).get_default_violation_report(report_result_id=report_result_id)# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).get_default_violation_report(report_result_id)print("The response of SODPoliciesApi->get_default_violation_report:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->get_default_violation_report: %s\n"%e)
Status of the violation report run task for all policy run.
ReportResultReference
-
400
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
-
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
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.report_result_referenceimportReportResultReferencefromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:try:# Get multi-report run task statusresults=SODPoliciesApi(api_client).get_sod_all_report_run_status()# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).get_sod_all_report_run_status()print("The response of SODPoliciesApi->get_sod_all_report_run_status:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->get_sod_all_report_run_status: %s\n"%e)
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
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.sod_policyimportSodPolicyfromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:id='ef38f943-47e9-4562-b5bb-8424a56397d8'# str | The ID of the SOD Policy to retrieve. # str | The ID of the SOD Policy to retrieve.try:# Get SOD policy by IDresults=SODPoliciesApi(api_client).get_sod_policy(id=id)# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).get_sod_policy(id)print("The response of SODPoliciesApi->get_sod_policy:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->get_sod_policy: %s\n"%e)
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
-
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
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.sod_policy_scheduleimportSodPolicySchedulefromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:id='ef38f943-47e9-4562-b5bb-8424a56397d8'# str | The ID of the SOD policy schedule to retrieve. # str | The ID of the SOD policy schedule to retrieve.try:# Get SOD policy scheduleresults=SODPoliciesApi(api_client).get_sod_policy_schedule(id=id)# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).get_sod_policy_schedule(id)print("The response of SODPoliciesApi->get_sod_policy_schedule:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->get_sod_policy_schedule: %s\n"%e)
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
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.report_result_referenceimportReportResultReferencefromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:report_result_id='2e8d8180-24bc-4d21-91c6-7affdb473b0d'# str | The ID of the report reference to retrieve. # str | The ID of the report reference to retrieve.try:# Get violation report run statusresults=SODPoliciesApi(api_client).get_sod_violation_report_run_status(report_result_id=report_result_id)# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).get_sod_violation_report_run_status(report_result_id)print("The response of SODPoliciesApi->get_sod_violation_report_run_status:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->get_sod_violation_report_run_status: %s\n"%e)
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
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.report_result_referenceimportReportResultReferencefromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:id='ef38f943-47e9-4562-b5bb-8424a56397d8'# str | The ID of the violation report to retrieve status for. # str | The ID of the violation report to retrieve status for.try:# Get SOD violation report statusresults=SODPoliciesApi(api_client).get_sod_violation_report_status(id=id)# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).get_sod_violation_report_status(id)print("The response of SODPoliciesApi->get_sod_violation_report_status:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->get_sod_violation_report_status: %s\n"%e)
Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.
Query
count
bool
(optional) (default to False)
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=true if that value will not be used. See V3 API Standard Collection Parameters for more information.
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: id: eq, inname: eq, instate: eq, in
Query
sorters
str
(optional)
Sort results using the standard syntax described in V3 API Standard Collection Parameters Sorting is supported for the following fields: id, name, created, modified, 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
-
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
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.sod_policyimportSodPolicyfromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:limit=250# int | 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) (default to 250) # int | 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) (default to 250)offset=0# int | 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) (default to 0) # int | 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) (default to 0)count=False# 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. 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](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to False) # 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. 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](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to False)filters='id eq \"bc693f07e7b645539626c25954c58554\"'# 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: **id**: *eq, in* **name**: *eq, in* **state**: *eq, in* (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: **id**: *eq, in* **name**: *eq, in* **state**: *eq, in* (optional)sorters='id,name'# 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: **id, name, created, modified, description** (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: **id, name, created, modified, description** (optional)try:# List SOD policiesresults=SODPoliciesApi(api_client).list_sod_policies()# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).list_sod_policies(limit, offset, count, filters, sorters)print("The response of SODPoliciesApi->list_sod_policies:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->list_sod_policies: %s\n"%e)
Patch SOD policy by ID
Allows updating SOD Policy fields other than ["id","created","creatorId","policyQuery","type"] using the JSON Patch standard.
Requires role of ORG_ADMIN.
This endpoint can only patch CONFLICTING_ACCESS_BASED type policies. Do not use this endpoint to patch general policies - doing so will build an API exception.
A list of SOD Policy update operations according to the JSON Patch standard. The following fields are patchable: * name * description * ownerRef * externalPolicyReference * compensatingControls * correctionAdvice * state * tags * violationOwnerAssignmentConfig * scheduled * conflictingAccessCriteria
Indicates the PATCH operation succeeded, and returns the SOD policy's new representation.
SodPolicy
-
400
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
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.json_patch_operationimportJsonPatchOperationfromsailpoint.v2024.models.sod_policyimportSodPolicyfromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:id='2c918083-5d19-1a86-015d-28455b4a2329'# str | The ID of the SOD policy being modified. # str | The ID of the SOD policy being modified.json_patch_operation='''[{op=replace, path=/description, value=Modified description}, {op=replace, path=/conflictingAccessCriteria/leftCriteria/name, value=money-in-modified}, {op=replace, path=/conflictingAccessCriteria/rightCriteria, value={name=money-out-modified, criteriaList=[{type=ENTITLEMENT, id=2c918087682f9a86016839c0509c1ab2}]}}]'''# List[JsonPatchOperation] | A list of SOD Policy update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * name * description * ownerRef * externalPolicyReference * compensatingControls * correctionAdvice * state * tags * violationOwnerAssignmentConfig * scheduled * conflictingAccessCriteria try:# Patch SOD policy by IDnew_json_patch_operation=JsonPatchOperation.from_json(json_patch_operation)results=SODPoliciesApi(api_client).patch_sod_policy(id=id,json_patch_operation=new_json_patch_operation)# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).patch_sod_policy(id, new_json_patch_operation)print("The response of SODPoliciesApi->patch_sod_policy:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->patch_sod_policy: %s\n"%e)
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
-
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.
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
Accept: application/json
Example
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.sod_policyimportSodPolicyfromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:id='ef38f943-47e9-4562-b5bb-8424a56397d8'# str | The ID of the SOD policy to update. # str | The ID of the SOD policy to update.sod_policy='''{
"conflictingAccessCriteria" : {
"leftCriteria" : {
"name" : "money-in",
"criteriaList" : [ {
"type" : "ENTITLEMENT",
"id" : "2c9180866166b5b0016167c32ef31a66",
"name" : "Administrator"
}, {
"type" : "ENTITLEMENT",
"id" : "2c9180866166b5b0016167c32ef31a67",
"name" : "Administrator"
} ]
},
"rightCriteria" : {
"name" : "money-in",
"criteriaList" : [ {
"type" : "ENTITLEMENT",
"id" : "2c9180866166b5b0016167c32ef31a66",
"name" : "Administrator"
}, {
"type" : "ENTITLEMENT",
"id" : "2c9180866166b5b0016167c32ef31a67",
"name" : "Administrator"
} ]
}
},
"ownerRef" : {
"name" : "Support",
"id" : "2c9180a46faadee4016fb4e018c20639",
"type" : "IDENTITY"
},
"created" : "2020-01-01T00:00:00Z",
"scheduled" : true,
"creatorId" : "0f11f2a4-7c94-4bf3-a2bd-742580fe3bde",
"modifierId" : "0f11f2a4-7c94-4bf3-a2bd-742580fe3bde",
"description" : "This policy ensures compliance of xyz",
"violationOwnerAssignmentConfig" : {
"assignmentRule" : "MANAGER",
"ownerRef" : {
"name" : "Support",
"id" : "2c9180a46faadee4016fb4e018c20639",
"type" : "IDENTITY"
}
},
"correctionAdvice" : "Based on the role of the employee, managers should remove access that is not required for their job function.",
"type" : "GENERAL",
"tags" : [ "TAG1", "TAG2" ],
"name" : "policy-xyz",
"modified" : "2020-01-01T00:00:00Z",
"policyQuery" : "@access(id:0f11f2a4-7c94-4bf3-a2bd-742580fe3bdg) AND @access(id:0f11f2a4-7c94-4bf3-a2bd-742580fe3bdf)",
"compensatingControls" : "Have a manager review the transaction decisions for their \"out of compliance\" employee",
"id" : "0f11f2a4-7c94-4bf3-a2bd-742580fe3bde",
"state" : "ENFORCED",
"externalPolicyReference" : "XYZ policy"
}'''# SodPolicy | try:# Update SOD policy by IDnew_sod_policy=SodPolicy.from_json(sod_policy)results=SODPoliciesApi(api_client).put_sod_policy(id=id,sod_policy=new_sod_policy)# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).put_sod_policy(id, new_sod_policy)print("The response of SODPoliciesApi->put_sod_policy:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->put_sod_policy: %s\n"%e)
Evaluate one policy by ID
Runs the scheduled report for the policy retrieved by passed policy ID. The report schedule is fetched from the policy retrieved by ID.
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
-
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
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.report_result_referenceimportReportResultReferencefromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:id='ef38f943-47e9-4562-b5bb-8424a56397d8'# str | The SOD policy ID to run. # str | The SOD policy ID to run.try:# Evaluate one policy by IDresults=SODPoliciesApi(api_client).start_evaluate_sod_policy(id=id)# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).start_evaluate_sod_policy(id)print("The response of SODPoliciesApi->start_evaluate_sod_policy:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->start_evaluate_sod_policy: %s\n"%e)
Runs all policies for org
Runs multi-policy report for the org. If a policy reports more than 5000 violations, the report mentions that the violation limit was exceeded for that policy. If the request is empty, the report runs for all policies. Otherwise, the report runs for only the filtered policy list provided.
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
-
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
Accept: application/json
Example
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.multi_policy_requestimportMultiPolicyRequestfromsailpoint.v2024.models.report_result_referenceimportReportResultReferencefromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:multi_policy_request='''{
"filteredPolicyList" : [ "[b868cd40-ffa4-4337-9c07-1a51846cfa94, 63a07a7b-39a4-48aa-956d-50c827deba2a]", "[b868cd40-ffa4-4337-9c07-1a51846cfa94, 63a07a7b-39a4-48aa-956d-50c827deba2a]" ]
}'''# MultiPolicyRequest | (optional)try:# Runs all policies for orgresults=SODPoliciesApi(api_client).start_sod_all_policies_for_org()# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).start_sod_all_policies_for_org(new_multi_policy_request)print("The response of SODPoliciesApi->start_sod_all_policies_for_org:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->start_sod_all_policies_for_org: %s\n"%e)
Runs SOD policy violation report
This invokes processing of violation report for given SOD policy. If the policy reports more than 5000 violations, the report returns with violation limit exceeded message.
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
fromsailpoint.v2024.api.sod_policies_apiimportSODPoliciesApifromsailpoint.v2024.api_clientimportApiClientfromsailpoint.v2024.models.report_result_referenceimportReportResultReferencefromsailpoint.configurationimportConfigurationconfiguration=Configuration()withApiClient(configuration)asapi_client:id='ef38f943-47e9-4562-b5bb-8424a56397d8'# str | The SOD policy ID to run. # str | The SOD policy ID to run.try:# Runs SOD policy violation reportresults=SODPoliciesApi(api_client).start_sod_policy(id=id)# Below is a request that includes all optional parameters# results = SODPoliciesApi(api_client).start_sod_policy(id)print("The response of SODPoliciesApi->start_sod_policy:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling SODPoliciesApi->start_sod_policy: %s\n"%e)