Saas Connectivity Customizers are cloud-based connector customizers. The customizers allow you to customize the out of the box connectors in a similar way to how you can use rules to customize VA (virtual appliance) based connectors.
Use these APIs to implement connector customizers functionality.
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
$ConnectorCustomizerCreateRequest=@"{
"name" : "MyCustomConnector"
}"@# Create connector customizertry{$Result=ConvertFrom-JsonToConnectorCustomizerCreateRequest-Json$ConnectorCustomizerCreateRequestNew-V2025ConnectorCustomizer-ConnectorCustomizerCreateRequest$Result# Below is a request that includes all optional parameters# New-V2025ConnectorCustomizer -ConnectorCustomizerCreateRequest $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling New-V2025ConnectorCustomizer"Write-Host$_.ErrorDetails}
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
$Id="b07dc46a-1498-4de8-bfbb-259a68e70c8a"# String | The id of the connector customizer.# Creates a connector customizer versiontry{New-V2025ConnectorCustomizerVersion-Id$Id# Below is a request that includes all optional parameters# New-V2025ConnectorCustomizerVersion -Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling New-V2025ConnectorCustomizerVersion"Write-Host$_.ErrorDetails}
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
$Id="b07dc46a-1498-4de8-bfbb-259a68e70c8a"# String | ID of the connector customizer to delete.# Delete connector customizertry{Remove-V2025ConnectorCustomizer-Id$Id# Below is a request that includes all optional parameters# Remove-V2025ConnectorCustomizer -Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Remove-V2025ConnectorCustomizer"Write-Host$_.ErrorDetails}
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
$Id="b07dc46a-1498-4de8-bfbb-259a68e70c8a"# String | ID of the connector customizer to get.# Get connector customizertry{Get-V2025ConnectorCustomizer-Id$Id# Below is a request that includes all optional parameters# Get-V2025ConnectorCustomizer -Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2025ConnectorCustomizer"Write-Host$_.ErrorDetails}
Offset into the full result set. Usually specified with limit to paginate through the results. 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
$Offset=0# Int32 | 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)$Limit=250# Int32 | 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)# List all connector customizerstry{Get-V2025ConnectorCustomizers# Below is a request that includes all optional parameters# Get-V2025ConnectorCustomizers -Offset $Offset -Limit $Limit }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2025ConnectorCustomizers"Write-Host$_.ErrorDetails}
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
$Id="b07dc46a-1498-4de8-bfbb-259a68e70c8a"# String | ID of the connector customizer to update.$ConnectorCustomizerUpdateRequest=@"{
"name" : "MyCustomConnector"
}"@# Update connector customizertry{Send-V2025ConnectorCustomizer-Id$Id# Below is a request that includes all optional parameters# Send-V2025ConnectorCustomizer -Id $Id -ConnectorCustomizerUpdateRequest $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Send-V2025ConnectorCustomizer"Write-Host$_.ErrorDetails}