Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/TemplateDto.md
2025-02-03 22:09:17 +00:00

2.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-template-dto TemplateDto TemplateDto TemplateDto powershellsdk
powershell
PowerShell
sdk
TemplateDto
V2024TemplateDto
/tools/sdk/powershell/v2024/models/template-dto
SDK
Software Development Kit
TemplateDto
V2024TemplateDto

TemplateDto

Properties

Name Type Description Notes
Key String The key of the template [required]
Name String The name of the Task Manager Subscription [optional]
Medium Enum [ "EMAIL", "PHONE", "SMS", "SLACK", "TEAMS" ] The message medium. More mediums may be added in the future. [required]
Locale String The locale for the message text, a BCP 47 language tag. [required]
Subject String The subject line in the template [optional]
Header String The header value is now located within the body field. If included with non-null values, will result in a 400. [optional]
Body String The body in the template [optional]
Footer String The footer value is now located within the body field. If included with non-null values, will result in a 400. [optional]
VarFrom String The ""From:"" address in the template [optional]
ReplyTo String The ""Reply To"" line in the template [optional]
Description String The description in the template [optional]
Id String This is auto-generated. [optional]
Created System.DateTime The time when this template is created. This is auto-generated. [optional]
Modified System.DateTime The time when this template was last modified. This is auto-generated. [optional]
SlackTemplate String [optional]
TeamsTemplate String [optional]

Examples

  • Prepare the resource
$TemplateDto = Initialize-PSSailpoint.V2024TemplateDto  -Key cloud_manual_work_item_summary `
 -Name Task Manager Subscription `
 -Medium EMAIL `
 -Locale en `
 -Subject You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}. `
 -Header null `
 -Body Please go to the task manager `
 -Footer null `
 -VarFrom $__global.emailFromAddress `
 -ReplyTo $__global.emailFromAddress `
 -Description Daily digest - sent if number of outstanding tasks for task owner > 0 `
 -Id c17bea3a-574d-453c-9e04-4365fbf5af0b `
 -Created 2020-01-01T00:00Z `
 -Modified 2020-01-01T00:00Z `
 -SlackTemplate null `
 -TeamsTemplate null
  • Convert the resource to JSON
$TemplateDto | ConvertTo-JSON

[Back to top]