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
$LauncherRequest=@"{
"reference" : {
"id" : "2fd6ff94-2081-4d29-acbc-83a0a2f744a5",
"type" : "WORKFLOW"
},
"name" : "Group Create",
"description" : "CreateanewActiveDirectoryGroup",
"disabled" : false,
"type" : "INTERACTIVE_PROCESS",
"config" : "{\"workflowId\":\"6b42d9be-61b6-46af-827e-ea29ba8aa3d9\"}"
}"@# Create launchertry{$Result=ConvertFrom-JsonToLauncherRequest-Json$LauncherRequestNew-V2024Launcher-LauncherRequest$Result# Below is a request that includes all optional parameters# New-V2024Launcher -LauncherRequest $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling New-V2024Launcher"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
$LauncherID="e3012408-8b61-4564-ad41-c5ec131c325b"# String | ID of the Launcher to be deleted# Delete launchertry{Remove-V2024Launcher-LauncherID$LauncherID# Below is a request that includes all optional parameters# Remove-V2024Launcher -LauncherID $LauncherID }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Remove-V2024Launcher"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
$LauncherID="e3012408-8b61-4564-ad41-c5ec131c325b"# String | ID of the Launcher to be retrieved# Get launcher by idtry{Get-V2024Launcher-LauncherID$LauncherID# Below is a request that includes all optional parameters# Get-V2024Launcher -LauncherID $LauncherID }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2024Launcher"Write-Host$_.ErrorDetails}
Filter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: description: swdisabled: eqname: sw
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
$Filters='disabled eq "true"'# String | 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: **description**: *sw* **disabled**: *eq* **name**: *sw* (optional)$Next="eyJuZXh0IjoxMjN9Cg=="# String | Pagination marker (optional)$Limit=42# Int32 | Number of Launchers to return (optional) (default to 10)# List all launchers for tenanttry{Get-V2024Launchers# Below is a request that includes all optional parameters# Get-V2024Launchers -Filters $Filters -Next $Next -Limit $Limit }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2024Launchers"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
$LauncherID="e3012408-8b61-4564-ad41-c5ec131c325b"# String | ID of the Launcher to be replaced$LauncherRequest=@"{
"reference" : {
"id" : "2fd6ff94-2081-4d29-acbc-83a0a2f744a5",
"type" : "WORKFLOW"
},
"name" : "Group Create",
"description" : "CreateanewActiveDirectoryGroup",
"disabled" : false,
"type" : "INTERACTIVE_PROCESS",
"config" : "{\"workflowId\":\"6b42d9be-61b6-46af-827e-ea29ba8aa3d9\"}"
}"@# Replace launchertry{$Result=ConvertFrom-JsonToLauncherRequest-Json$LauncherRequestSend-V2024Launcher-LauncherID$LauncherID-LauncherRequest$Result# Below is a request that includes all optional parameters# Send-V2024Launcher -LauncherID $LauncherID -LauncherRequest $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Send-V2024Launcher"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
$LauncherID="e3012408-8b61-4564-ad41-c5ec131c325b"# String | ID of the Launcher to be launched# Launch a launchertry{Start-V2024Launcher-LauncherID$LauncherID# Below is a request that includes all optional parameters# Start-V2024Launcher -LauncherID $LauncherID }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Start-V2024Launcher"Write-Host$_.ErrorDetails}