Skip to main content

IntelIdentityNotFoundBody

Properties

NameTypeDescriptionNotes
DetailCodeEnum [ "IDC_IDENTITY_NOT_FOUND" ]Constant detail code indicating that no identity matched the supplied filter.[required]
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
$IntelIdentityNotFoundBody = Initialize-IntelIdentityNotFoundBody  -DetailCode IDC_IDENTITY_NOT_FOUND `
-TrackingId e7eab60924f64aa284175b9fa3309599 `
-Messages null `
-Causes null
  • Convert the resource to JSON
$IntelIdentityNotFoundBody | ConvertTo-JSON

[Back to top]