Skip to main content

ErrorResponseDto

Properties

NameTypeDescriptionNotes
DetailCodeStringFine-grained error code providing more detail of the error.[optional]
TrackingIdStringUnique tracking id for the error.[optional]
Messages[]ErrorMessageDtoGeneric localized reason for error[optional]
Causes[]ErrorMessageDtoPlain-text descriptive reasons to provide additional detail to the text provided in the messages field[optional]

Examples

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

[Back to top]