Skip to main content

TemplateDto

Properties

NameTypeDescriptionNotes
KeyStringThe key of the template[required]
NameStringThe name of the Task Manager Subscription[optional]
MediumEnum [ "EMAIL", "PHONE", "SMS", "SLACK", "TEAMS" ]The message medium. More mediums may be added in the future.[required]
LocaleStringThe locale for the message text, a BCP 47 language tag.[required]
SubjectStringThe subject line in the template[optional]
HeaderStringThe header value is now located within the body field. If included with non-null values, will result in a 400.[optional]
BodyStringThe body in the template[optional]
FooterStringThe footer value is now located within the body field. If included with non-null values, will result in a 400.[optional]
VarFromStringThe ""From:"" address in the template[optional]
ReplyToStringThe ""Reply To"" line in the template[optional]
DescriptionStringThe description in the template[optional]
IdStringThis is auto-generated.[optional]
CreatedSystem.DateTimeThe time when this template is created. This is auto-generated.[optional]
ModifiedSystem.DateTimeThe time when this template was last modified. This is auto-generated.[optional]
SlackTemplateString[optional]
TeamsTemplateString[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]