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
$XSailPointExperimental="true"# String | Use this header to enable this experimental API. (default to "true")$ConnectorRuleCreateRequest=@"{
"sourceCode" : {
"version" : "1.0",
"script" : "return\"Mr. \"+firstName;"
},
"signature" : {
"output" : {
"name" : "firstName",
"description" : "thefirstnameoftheidentity",
"type" : "String"
},
"input" : [ {
"name" : "firstName",
"description" : "thefirstnameoftheidentity",
"type" : "String"
}, {
"name" : "firstName",
"description" : "thefirstnameoftheidentity",
"type" : "String"
} ]
},
"name" : "WebServiceBeforeOperationRule",
"description" : "Thisruledoesthat",
"attributes" : { },
"type" : "BuildMap"
}"@# Create Connector Ruletry{$Result=ConvertFrom-JsonToConnectorRuleCreateRequest-Json$ConnectorRuleCreateRequestNew-V2024ConnectorRule-V2024XSailPointExperimental$XSailPointExperimental-V2024ConnectorRuleCreateRequest$Result# Below is a request that includes all optional parameters# New-V2024ConnectorRule -V2024XSailPointExperimental $XSailPointExperimental -V2024ConnectorRuleCreateRequest $ConnectorRuleCreateRequest }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling New-V2024ConnectorRule"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="8c190e6787aa4ed9a90bd9d5344523fb"# String | ID of the connector rule to delete.$XSailPointExperimental="true"# String | Use this header to enable this experimental API. (default to "true")# Delete Connector Ruletry{Remove-V2024ConnectorRule-V2024Id$Id-V2024XSailPointExperimental$XSailPointExperimental# Below is a request that includes all optional parameters# Remove-V2024ConnectorRule -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Remove-V2024ConnectorRule"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="8c190e6787aa4ed9a90bd9d5344523fb"# String | ID of the connector rule to get.$XSailPointExperimental="true"# String | Use this header to enable this experimental API. (default to "true")# Get Connector Ruletry{Get-V2024ConnectorRule-V2024Id$Id-V2024XSailPointExperimental$XSailPointExperimental# Below is a request that includes all optional parameters# Get-V2024ConnectorRule -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2024ConnectorRule"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.
Query
Count
Boolean
(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
$XSailPointExperimental="true"# String | Use this header to enable this experimental API. (default to "true")$Limit=50# Int32 | Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information. (optional) (default to 50)$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)$Count=$true# Boolean | 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)# List Connector Rulestry{Get-V2024ConnectorRuleList-V2024XSailPointExperimental$XSailPointExperimental# Below is a request that includes all optional parameters# Get-V2024ConnectorRuleList -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2024ConnectorRuleList"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="8c190e6787aa4ed9a90bd9d5344523fb"# String | ID of the connector rule to update.$XSailPointExperimental="true"# String | Use this header to enable this experimental API. (default to "true")$ConnectorRuleUpdateRequest=@"{
"sourceCode" : {
"version" : "1.0",
"script" : "return\"Mr. \"+firstName;"
},
"signature" : {
"output" : {
"name" : "firstName",
"description" : "thefirstnameoftheidentity",
"type" : "String"
},
"input" : [ {
"name" : "firstName",
"description" : "thefirstnameoftheidentity",
"type" : "String"
}, {
"name" : "firstName",
"description" : "thefirstnameoftheidentity",
"type" : "String"
} ]
},
"name" : "WebServiceBeforeOperationRule",
"description" : "Thisruledoesthat",
"attributes" : { },
"id" : "8113d48c0b914f17b4c6072d4dcb9dfe",
"type" : "BuildMap"
}"@# Update Connector Ruletry{Send-V2024ConnectorRule-V2024Id$Id-V2024XSailPointExperimental$XSailPointExperimental# Below is a request that includes all optional parameters# Send-V2024ConnectorRule -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024ConnectorRuleUpdateRequest $ConnectorRuleUpdateRequest }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Send-V2024ConnectorRule"Write-Host$_.ErrorDetails}
Status of the code's eligibility as a connector rule.
ConnectorRuleValidationResponse
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: application/json
Accept: application/json
Example
$XSailPointExperimental="true"# String | Use this header to enable this experimental API. (default to "true")$SourceCode=@"{
"version" : "1.0",
"script" : "return\"Mr. \"+firstName;"
}"@# Validate Connector Ruletry{$Result=ConvertFrom-JsonToSourceCode-Json$SourceCodeTest-V2024ConnectorRule-V2024XSailPointExperimental$XSailPointExperimental-V2024SourceCode$Result# Below is a request that includes all optional parameters# Test-V2024ConnectorRule -V2024XSailPointExperimental $XSailPointExperimental -V2024SourceCode $SourceCode }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Test-V2024ConnectorRule"Write-Host$_.ErrorDetails}