:::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.
:::
:::tip setting x-sailpoint-experimental header
on the configuration object you can set the x-sailpoint-experimental header to `true' to enable all experimantl endpoints within the SDK.
Example:
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.v2025.api.identity_attributes_apiimportIdentityAttributesApifromsailpoint.v2025.api_clientimportApiClientfromsailpoint.v2025.models.identity_attributeimportIdentityAttributefromsailpoint.configurationimportConfigurationconfiguration=Configuration()configuration.experimental=truewithApiClient(configuration)asapi_client:x_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')identity_attribute='''{
"standard" : false,
"system" : false,
"sources" : [ {
"type" : "rule",
"properties" : {
"ruleType" : "IdentityAttribute",
"ruleName" : "Cloud Promote Identity Attribute"
}
}, {
"type" : "rule",
"properties" : {
"ruleType" : "IdentityAttribute",
"ruleName" : "Cloud Promote Identity Attribute"
}
} ],
"displayName" : "Cost Center",
"name" : "costCenter",
"type" : "string",
"searchable" : false,
"multi" : false
}'''# IdentityAttribute | try:# Create Identity Attributenew_identity_attribute=IdentityAttribute.from_json(identity_attribute)results=IdentityAttributesApi(api_client).create_identity_attribute(x_sail_point_experimental=x_sail_point_experimental,identity_attribute=new_identity_attribute)# Below is a request that includes all optional parameters# results = IdentityAttributesApi(api_client).create_identity_attribute(x_sail_point_experimental, new_identity_attribute)print("The response of IdentityAttributesApi->create_identity_attribute:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling IdentityAttributesApi->create_identity_attribute: %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.
:::
:::tip setting x-sailpoint-experimental header
on the configuration object you can set the x-sailpoint-experimental header to `true' to enable all experimantl endpoints within the SDK.
Example:
:::
Delete Identity Attribute
This deletes an identity attribute with the given name. The system and standard properties must be set to false before you can delete an identity attribute.
No content - indicates the request was successful but there is no content to be returned in the 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.v2025.api.identity_attributes_apiimportIdentityAttributesApifromsailpoint.v2025.api_clientimportApiClientfromsailpoint.configurationimportConfigurationconfiguration=Configuration()configuration.experimental=truewithApiClient(configuration)asapi_client:name='displayName'# str | The attribute's technical name. # str | The attribute's technical name.x_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:# Delete Identity AttributeIdentityAttributesApi(api_client).delete_identity_attribute(name=name,x_sail_point_experimental=x_sail_point_experimental)# Below is a request that includes all optional parameters# IdentityAttributesApi(api_client).delete_identity_attribute(name, x_sail_point_experimental)exceptExceptionase:print("Exception when calling IdentityAttributesApi->delete_identity_attribute: %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.
:::
:::tip setting x-sailpoint-experimental header
on the configuration object you can set the x-sailpoint-experimental header to `true' to enable all experimantl endpoints within the SDK.
Example:
:::
Bulk delete Identity Attributes
Use this API to bulk delete identity attributes for a given set of names. Attributes that are currently mapped in an identity profile cannot be deleted. The system and standard properties must be set to 'false' before you can delete an identity attribute.
No content - indicates the request was successful but there is no content to be returned in the 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: application/json
Accept: application/json
Example
fromsailpoint.v2025.api.identity_attributes_apiimportIdentityAttributesApifromsailpoint.v2025.api_clientimportApiClientfromsailpoint.v2025.models.identity_attribute_namesimportIdentityAttributeNamesfromsailpoint.configurationimportConfigurationconfiguration=Configuration()configuration.experimental=truewithApiClient(configuration)asapi_client:x_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')identity_attribute_names='''{
"ids" : [ "name", "displayName" ]
}'''# IdentityAttributeNames | try:# Bulk delete Identity Attributesnew_identity_attribute_names=IdentityAttributeNames.from_json(identity_attribute_names)IdentityAttributesApi(api_client).delete_identity_attributes_in_bulk(x_sail_point_experimental=x_sail_point_experimental,identity_attribute_names=new_identity_attribute_names)# Below is a request that includes all optional parameters# IdentityAttributesApi(api_client).delete_identity_attributes_in_bulk(x_sail_point_experimental, new_identity_attribute_names)exceptExceptionase:print("Exception when calling IdentityAttributesApi->delete_identity_attributes_in_bulk: %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.
:::
:::tip setting x-sailpoint-experimental header
on the configuration object you can set the x-sailpoint-experimental header to `true' to enable all experimantl endpoints within the SDK.
Example:
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.v2025.api.identity_attributes_apiimportIdentityAttributesApifromsailpoint.v2025.api_clientimportApiClientfromsailpoint.v2025.models.identity_attributeimportIdentityAttributefromsailpoint.configurationimportConfigurationconfiguration=Configuration()configuration.experimental=truewithApiClient(configuration)asapi_client:name='displayName'# str | The attribute's technical name. # str | The attribute's technical name.x_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:# Get Identity Attributeresults=IdentityAttributesApi(api_client).get_identity_attribute(name=name,x_sail_point_experimental=x_sail_point_experimental)# Below is a request that includes all optional parameters# results = IdentityAttributesApi(api_client).get_identity_attribute(name, x_sail_point_experimental)print("The response of IdentityAttributesApi->get_identity_attribute:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling IdentityAttributesApi->get_identity_attribute: %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.
:::
:::tip setting x-sailpoint-experimental header
on the configuration object you can set the x-sailpoint-experimental header to `true' to enable all experimantl endpoints within the SDK.
Example:
Include only 'searchable' attributes in the response.
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.
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.v2025.api.identity_attributes_apiimportIdentityAttributesApifromsailpoint.v2025.api_clientimportApiClientfromsailpoint.v2025.models.identity_attributeimportIdentityAttributefromsailpoint.configurationimportConfigurationconfiguration=Configuration()configuration.experimental=truewithApiClient(configuration)asapi_client:x_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')include_system=False# bool | Include 'system' attributes in the response. (optional) (default to False) # bool | Include 'system' attributes in the response. (optional) (default to False)include_silent=False# bool | Include 'silent' attributes in the response. (optional) (default to False) # bool | Include 'silent' attributes in the response. (optional) (default to False)searchable_only=False# bool | Include only 'searchable' attributes in the response. (optional) (default to False) # bool | Include only 'searchable' attributes in the response. (optional) (default to False)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)try:# List Identity Attributesresults=IdentityAttributesApi(api_client).list_identity_attributes(x_sail_point_experimental=x_sail_point_experimental)# Below is a request that includes all optional parameters# results = IdentityAttributesApi(api_client).list_identity_attributes(x_sail_point_experimental, include_system, include_silent, searchable_only, count)print("The response of IdentityAttributesApi->list_identity_attributes:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling IdentityAttributesApi->list_identity_attributes: %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.
:::
:::tip setting x-sailpoint-experimental header
on the configuration object you can set the x-sailpoint-experimental header to `true' to enable all experimantl endpoints within the SDK.
Example:
:::
Update Identity Attribute
This updates an existing identity attribute. Making an attribute searchable requires that the system, standard, and multi properties be set to false.
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.v2025.api.identity_attributes_apiimportIdentityAttributesApifromsailpoint.v2025.api_clientimportApiClientfromsailpoint.v2025.models.identity_attributeimportIdentityAttributefromsailpoint.configurationimportConfigurationconfiguration=Configuration()configuration.experimental=truewithApiClient(configuration)asapi_client:name='displayName'# str | The attribute's technical name. # str | The attribute's technical name.x_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')identity_attribute='''{
"standard" : false,
"system" : false,
"sources" : [ {
"type" : "rule",
"properties" : {
"ruleType" : "IdentityAttribute",
"ruleName" : "Cloud Promote Identity Attribute"
}
}, {
"type" : "rule",
"properties" : {
"ruleType" : "IdentityAttribute",
"ruleName" : "Cloud Promote Identity Attribute"
}
} ],
"displayName" : "Cost Center",
"name" : "costCenter",
"type" : "string",
"searchable" : false,
"multi" : false
}'''# IdentityAttribute | try:# Update Identity Attributenew_identity_attribute=IdentityAttribute.from_json(identity_attribute)results=IdentityAttributesApi(api_client).put_identity_attribute(name=name,x_sail_point_experimental=x_sail_point_experimental,identity_attribute=new_identity_attribute)# Below is a request that includes all optional parameters# results = IdentityAttributesApi(api_client).put_identity_attribute(name, x_sail_point_experimental, new_identity_attribute)print("The response of IdentityAttributesApi->put_identity_attribute:\n")print(results.model_dump_json(by_alias=True,indent=4))exceptExceptionase:print("Exception when calling IdentityAttributesApi->put_identity_attribute: %s\n"%e)