Client Error - Returned if the request body is invalid.
ErrorResponseDto
403
Forbidden - Returned if the user you are running as, doesn't have access to this end-point.
ErrorResponseDto
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")$CustomPasswordInstruction=@"{
"pageContent" : "Pleaseenteranewpassword.Yourpasswordmustbeatleast8characterslongandcontainatleastonenumberandoneletter.",
"pageId" : "change-password:enter-password",
"locale" : "en"
}"@# Create Custom Password Instructionstry{$Result=ConvertFrom-JsonToCustomPasswordInstruction-Json$CustomPasswordInstructionNew-V2024CustomPasswordInstructions-V2024XSailPointExperimental$XSailPointExperimental-V2024CustomPasswordInstruction$Result# Below is a request that includes all optional parameters# New-V2024CustomPasswordInstructions -V2024XSailPointExperimental $XSailPointExperimental -V2024CustomPasswordInstruction $CustomPasswordInstruction }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling New-V2024CustomPasswordInstructions"Write-Host$_.ErrorDetails}
This API delete the custom password instructions for the specified page ID.
Parameters
Param Type
Name
Data Type
Required
Description
Path
PageId
String
True
The page ID of custom password instructions to delete.
XSailPointExperimental
String
True (default to "true")
Use this header to enable this experimental API.
Query
Locale
String
(optional)
The locale for the custom instructions, a BCP47 language tag. The default value is ""default"".
Return type
(empty response body)
Responses
Code
Description
Data Type
204
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
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
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$PageId="change-password:enter-password"# String | The page ID of custom password instructions to delete.$XSailPointExperimental="true"# String | Use this header to enable this experimental API. (default to "true")$Locale="MyLocale"# String | The locale for the custom instructions, a BCP47 language tag. The default value is \""default\"". (optional)# Delete Custom Password Instructions by page IDtry{Remove-V2024CustomPasswordInstructions-V2024PageId$PageId-V2024XSailPointExperimental$XSailPointExperimental# Below is a request that includes all optional parameters# Remove-V2024CustomPasswordInstructions -V2024PageId $PageId -V2024XSailPointExperimental $XSailPointExperimental -V2024Locale $Locale }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Remove-V2024CustomPasswordInstructions"Write-Host$_.ErrorDetails}
Client Error - Returned if the request body is invalid.
ErrorResponseDto
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
500
Internal Server Error - Returned if there is an unexpected error.
ErrorResponseDto
HTTP request headers
Content-Type: Not defined
Accept: application/json
Example
$PageId="change-password:enter-password"# String | The page ID of custom password instructions to query.$XSailPointExperimental="true"# String | Use this header to enable this experimental API. (default to "true")$Locale="MyLocale"# String | The locale for the custom instructions, a BCP47 language tag. The default value is \""default\"". (optional)# Get Custom Password Instructions by Page IDtry{Get-V2024CustomPasswordInstructions-V2024PageId$PageId-V2024XSailPointExperimental$XSailPointExperimental# Below is a request that includes all optional parameters# Get-V2024CustomPasswordInstructions -V2024PageId $PageId -V2024XSailPointExperimental $XSailPointExperimental -V2024Locale $Locale }catch{Write-Host$_.Exception.Response.StatusCode.value__"Exception occurred when calling Get-V2024CustomPasswordInstructions"Write-Host$_.ErrorDetails}