Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/ErrorResponseDto1.md
2025-04-01 09:23:12 -04:00

1.3 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-error-response-dto1 ErrorResponseDto1 ErrorResponseDto1 ErrorResponseDto1 powershellsdk
powershell
PowerShell
sdk
ErrorResponseDto1
V2025ErrorResponseDto1
/tools/sdk/powershell/v2025/models/error-response-dto1
SDK
Software Development Kit
ErrorResponseDto1
V2025ErrorResponseDto1

ErrorResponseDto1

Properties

Name Type Description Notes
DetailCode String Fine-grained error code providing more detail of the error. [optional]
TrackingId String Unique tracking id for the error. [optional]
Messages []ErrorMessageDto1 Generic localized reason for error [optional]
Causes []ErrorMessageDto1 Plain-text descriptive reasons to provide additional detail to the text provided in the messages field [optional]

Examples

  • Prepare the resource
$ErrorResponseDto1 = Initialize-PSSailpoint.V2025ErrorResponseDto1  -DetailCode 400.1 Bad Request Content `
 -TrackingId e7eab60924f64aa284175b9fa3309599 `
 -Messages null `
 -Causes null
  • Convert the resource to JSON
$ErrorResponseDto1 | ConvertTo-JSON

[Back to top]