Skip to main content

SendTestNotificationRequestDto

Properties

NameTypeDescriptionNotes
KeyStringThe template notification key.[optional]
MediumEnum [ "EMAIL", "SLACK", "TEAMS" ]The notification medium. Has to be one of the following enum values.[optional]
Context[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0A Json object that denotes the context specific to the template.[optional]

Examples

  • Prepare the resource
$SendTestNotificationRequestDto = Initialize-PSSailpoint.V2024SendTestNotificationRequestDto  -Key cloud_manual_work_item_summary `
-Medium null `
-Context null
  • Convert the resource to JSON
$SendTestNotificationRequestDto | ConvertTo-JSON

[Back to top]