Use this API to implement and customize configuration settings management. With this functionality, you can access the Configuration Hub actions and build your own automated pipeline for Identity Security Cloud configuration change delivery and deployment.
Common usages for Configuration Hub includes:
Upload configuration file - Configuration files can be managed and deployed using Configuration Hub by uploading a JSON file which contains configuration data.
Manage object mapping - Create rules to map and substitute attributes when migrating configurations.
Manage backups for configuration settings
Manage configuration drafts
Upload configurations and manage object mappings between tenants.
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
$DeployRequest=@"{
"draftId" : "3d0fe04b-57df-4a46-a83b-8f04b0f9d10b"
}"@# Create a Deploytry{$Result=ConvertFrom-JsonToDeployRequest-Json$DeployRequestNew-V2025Deploy-DeployRequest$Result# Below is a request that includes all optional parameters# New-V2025Deploy -DeployRequest $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling New-V2025Deploy"Write-Host$_.ErrorDetails}
This creates an object mapping between current org and source org.
Source org should be "default" when creating an object mapping that is not to be associated to any particular org.
The request will need the following security scope:
The created object mapping between current org and source org.
ObjectMappingResponse
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
$SourceOrg="source-org"# String | The name of the source org.$ObjectMappingRequest=@"{
"targetValue" : "MyNewGovernanceGroup Name",
"jsonPath" : "$.name",
"sourceValue" : "MyGovernanceGroup Name",
"enabled" : false,
"objectType" : "IDENTITY"
}"@# Creates an object mappingtry{$Result=ConvertFrom-JsonToObjectMappingRequest-Json$ObjectMappingRequestNew-V2025ObjectMapping-SourceOrg$SourceOrg-ObjectMappingRequest$Result# Below is a request that includes all optional parameters# New-V2025ObjectMapping -SourceOrg $SourceOrg -ObjectMappingRequest $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling New-V2025ObjectMapping"Write-Host$_.ErrorDetails}
This creates a set of object mappings (Max 25) between current org and source org.
Source org should be "default" when creating object mappings that are not to be associated to any particular org.
The request will need the following security scope:
The created object mapping between current org and source org.
ObjectMappingBulkCreateResponse
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
$SourceOrg="source-org"# String | The name of the source org.$ObjectMappingBulkCreateRequest=@"{
"newObjectsMappings" : [ {
"targetValue" : "MyNewGovernanceGroup Name",
"jsonPath" : "$.name",
"sourceValue" : "MyGovernanceGroup Name",
"enabled" : false,
"objectType" : "IDENTITY"
}, {
"targetValue" : "MyNewGovernanceGroup Name",
"jsonPath" : "$.name",
"sourceValue" : "MyGovernanceGroup Name",
"enabled" : false,
"objectType" : "IDENTITY"
} ]
}"@# Bulk creates object mappingstry{$Result=ConvertFrom-JsonToObjectMappingBulkCreateRequest-Json$ObjectMappingBulkCreateRequestNew-V2025ObjectMappings-SourceOrg$SourceOrg-ObjectMappingBulkCreateRequest$Result# Below is a request that includes all optional parameters# New-V2025ObjectMappings -SourceOrg $SourceOrg -ObjectMappingBulkCreateRequest $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling New-V2025ObjectMappings"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
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.
This API uploads a JSON configuration file into a tenant.
Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality.
Refer to SaaS Configuration for more information about supported objects.
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: multipart/form-data
Accept: application/json
Example
$Data=# System.IO.FileInfo | JSON file containing the objects to be imported.$Name="MyName"# String | Name that will be assigned to the uploaded configuration file.# Upload a Configurationtry{New-V2025UploadedConfiguration-Data$Data-Name$Name# Below is a request that includes all optional parameters# New-V2025UploadedConfiguration -Data $Data -Name $Name }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling New-V2025UploadedConfiguration"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="07659d7d-2cce-47c0-9e49-185787ee565a"# String | The id of the backup to delete.# Delete a Backuptry{Remove-V2025Backup-Id$Id# Below is a request that includes all optional parameters# Remove-V2025Backup -Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Remove-V2025Backup"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="07659d7d-2cce-47c0-9e49-185787ee565a"# String | The id of the draft to delete.# Delete a drafttry{Remove-V2025Draft-Id$Id# Below is a request that includes all optional parameters# Remove-V2025Draft -Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Remove-V2025Draft"Write-Host$_.ErrorDetails}
This deletes an existing object mapping.
Source org should be "default" when deleting an object mapping that is not associated to any particular org.
The request will need the following security scope:
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
$SourceOrg="source-org"# String | The name of the source org.$ObjectMappingId="3d6e0144-963f-4bd6-8d8d-d77b4e507ce4"# String | The id of the object mapping to be deleted.# Deletes an object mappingtry{Remove-V2025ObjectMapping-SourceOrg$SourceOrg-ObjectMappingId$ObjectMappingId# Below is a request that includes all optional parameters# Remove-V2025ObjectMapping -SourceOrg $SourceOrg -ObjectMappingId $ObjectMappingId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Remove-V2025ObjectMapping"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
$ScheduledActionId="0f11f2a4-7c94-4bf3-a2bd-742580fe3bde"# String | The ID of the scheduled action.# Delete Scheduled Actiontry{Remove-V2025ScheduledAction-ScheduledActionId$ScheduledActionId# Below is a request that includes all optional parameters# Remove-V2025ScheduledAction -ScheduledActionId $ScheduledActionId }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Remove-V2025ScheduledAction"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="3d0fe04b-57df-4a46-a83b-8f04b0f9d10b"# String | The id of the uploaded configuration.# Delete an Uploaded Configurationtry{Remove-V2025UploadedConfiguration-Id$Id# Below is a request that includes all optional parameters# Remove-V2025UploadedConfiguration -Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Remove-V2025UploadedConfiguration"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="3d0fe04b-57df-4a46-a83b-8f04b0f9d10b"# String | The id of the deploy.# Get a Deploytry{Get-V2025Deploy-Id$Id# Below is a request that includes all optional parameters# Get-V2025Deploy -Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2025Deploy"Write-Host$_.ErrorDetails}
This gets a list of existing object mappings between current org and source org.
Source org should be "default" when getting object mappings that are not associated to any particular org.
The request will need the following security scope:
List of existing object mappings between current org and source org.
ObjectMappingResponse[]
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
$SourceOrg="source-org"# String | The name of the source org.# Gets list of object mappingstry{Get-V2025ObjectMappings-SourceOrg$SourceOrg# Below is a request that includes all optional parameters# Get-V2025ObjectMappings -SourceOrg $SourceOrg }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2025ObjectMappings"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="3d0fe04b-57df-4a46-a83b-8f04b0f9d10b"# String | The id of the uploaded configuration.# Get an Uploaded Configurationtry{Get-V2025UploadedConfiguration-Id$Id# Below is a request that includes all optional parameters# Get-V2025UploadedConfiguration -Id $Id }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2025UploadedConfiguration"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: status: eq
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
$Filters='status eq "COMPLETE"'# 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: **status**: *eq* (optional)# List Backupstry{Get-V2025Backups# Below is a request that includes all optional parameters# Get-V2025Backups -Filters $Filters }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2025Backups"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
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
# List Deploystry{Get-V2025Deploys# Below is a request that includes all optional parameters# Get-V2025Deploys }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2025Deploys"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: status: eqapprovalStatus: eq
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
$Filters='status eq "COMPLETE"'# 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: **status**: *eq* **approvalStatus**: *eq* (optional)# List Draftstry{Get-V2025Drafts# Below is a request that includes all optional parameters# Get-V2025Drafts -Filters $Filters }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2025Drafts"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
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
# List Scheduled Actionstry{Get-V2025ScheduledActions# Below is a request that includes all optional parameters# Get-V2025ScheduledActions }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2025ScheduledActions"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: status: eq
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='status eq "COMPLETE"'# 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: **status**: *eq* (optional)# List Uploaded Configurationstry{Get-V2025UploadedConfigurations# Below is a request that includes all optional parameters# Get-V2025UploadedConfigurations -Filters $Filters }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2025UploadedConfigurations"Write-Host$_.ErrorDetails}
This updates a set of object mappings, only enabled and targetValue fields can be updated.
Source org should be "default" when updating object mappings that are not associated to any particular org.
The request will need the following security scope:
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
$SourceOrg="source-org"# String | The name of the source org.$ObjectMappingBulkPatchRequest=@"{
"patches" : {
"603b1a61-d03d-4ed1-864f-a508fbd1995d" : [ {
"op" : "replace",
"path" : "/enabled",
"value" : true
} ],
"00bece34-f50d-4227-8878-76f620b5a971" : [ {
"op" : "replace",
"path" : "/targetValue",
"value" : "NewTargetValue"
} ]
}
}"@# Bulk updates object mappingstry{$Result=ConvertFrom-JsonToObjectMappingBulkPatchRequest-Json$ObjectMappingBulkPatchRequestUpdate-V2025ObjectMappings-SourceOrg$SourceOrg-ObjectMappingBulkPatchRequest$Result# Below is a request that includes all optional parameters# Update-V2025ObjectMappings -SourceOrg $SourceOrg -ObjectMappingBulkPatchRequest $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Update-V2025ObjectMappings"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-patch+json
Accept: application/json
Example
$ScheduledActionId="0f11f2a4-7c94-4bf3-a2bd-742580fe3bde"# String | The ID of the scheduled action.$JsonPatch=@"{
"operations" : [ {
"op" : "replace",
"path" : "/description",
"value" : "Newdescription"
}, {
"op" : "replace",
"path" : "/description",
"value" : "Newdescription"
} ]
}"@# Update Scheduled Actiontry{$Result=ConvertFrom-JsonToJsonPatch-Json$JsonPatchUpdate-V2025ScheduledAction-ScheduledActionId$ScheduledActionId-JsonPatch$Result# Below is a request that includes all optional parameters# Update-V2025ScheduledAction -ScheduledActionId $ScheduledActionId -JsonPatch $Result }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Update-V2025ScheduledAction"Write-Host$_.ErrorDetails}