Skip to main content

ValidateFilterInputDto

Properties

NameTypeDescriptionNotes
VarInputSystemCollectionsHashtableMock input to evaluate filter expression against.[required]
VarFilterStringJSONPath filter to conditionally invoke trigger when expression evaluates to true.[required]

Examples

  • Prepare the resource
$ValidateFilterInputDto = Initialize-ValidateFilterInputDto  -VarInput {"identityId":"201327fda1c44704ac01181e963d463c"} `
-VarFilter $[?($.identityId == "201327fda1c44704ac01181e963d463c")]
  • Convert the resource to JSON
$ValidateFilterInputDto | ConvertTo-JSON

[Back to top]