Skip to main content

RecommendationRequestDto

Properties

NameTypeDescriptionNotes
Requests[]RecommendationRequest[optional]
ExcludeInterpretationsBooleanExclude interpretations in the response if ""true"". Return interpretations in the response if this attribute is not specified.[optional] [default to $false]
IncludeTranslationMessagesBooleanWhen set to true, the calling system uses the translated messages for the specified language[optional] [default to $false]
IncludeDebugInformationBooleanReturns the recommender calculations if set to true[optional] [default to $false]
PrescribeModeBooleanWhen set to true, uses prescribedRulesRecommenderConfig to get identity attributes and peer group threshold instead of standard config.[optional] [default to $false]

Examples

  • Prepare the resource
$RecommendationRequestDto = Initialize-PSSailpoint.BetaRecommendationRequestDto  -Requests null `
-ExcludeInterpretations false `
-IncludeTranslationMessages false `
-IncludeDebugInformation true `
-PrescribeMode false
  • Convert the resource to JSON
$RecommendationRequestDto | ConvertTo-JSON

[Back to top]