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

2.2 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-campaign-template CampaignTemplate CampaignTemplate CampaignTemplate powershellsdk
powershell
PowerShell
sdk
CampaignTemplate
V2024CampaignTemplate
/tools/sdk/powershell/v2024/models/campaign-template
SDK
Software Development Kit
CampaignTemplate
V2024CampaignTemplate

CampaignTemplate

Properties

Name Type Description Notes
Id String Id of the campaign template [optional]
Name String This template's name. Has no bearing on generated campaigns' names. [required]
Description String This template's description. Has no bearing on generated campaigns' descriptions. [required]
Created System.DateTime Creation date of Campaign Template [required][readonly]
Modified System.DateTime Modification date of Campaign Template [required][readonly]
Scheduled Boolean Indicates if this campaign template has been scheduled. [optional] [readonly] [default to $false]
OwnerRef CampaignTemplateOwnerRef [optional]
DeadlineDuration String The time period during which the campaign should be completed, formatted as an ISO-8601 Duration. When this template generates a campaign, the campaign's deadline will be the current date plus this duration. For example, if generation occurred on 2020-01-01 and this field was ""P2W"" (two weeks), the resulting campaign's deadline would be 2020-01-15 (the current date plus 14 days). [optional]
Campaign Campaign [required]

Examples

  • Prepare the resource
$CampaignTemplate = Initialize-PSSailpoint.V2024CampaignTemplate  -Id 2c9079b270a266a60170a277bb960008 `
 -Name Manager Campaign Template `
 -Description Template for the annual manager campaign. `
 -Created 2020-03-05T22:44:00.364Z `
 -Modified 2020-03-05T22:52:09.969Z `
 -Scheduled false `
 -OwnerRef null `
 -DeadlineDuration P2W `
 -Campaign null
  • Convert the resource to JSON
$CampaignTemplate | ConvertTo-JSON

[Back to top]