Skip to main content

GetActiveCampaigns200ResponseInner

Properties

NameTypeDescriptionNotes
IdStringId of the campaign[optional] [readonly]
NameStringThe campaign name. If this object is part of a template, special formatting applies; see the /campaign-templates/{id}/generate endpoint documentation for details.[required]
DescriptionStringThe campaign description. If this object is part of a template, special formatting applies; see the /campaign-templates/{id}/generate endpoint documentation for details.[required]
DeadlineSystem.DateTimeThe campaign's completion deadline. This date must be in the future in order to activate the campaign. If you try to activate a campaign with a deadline of today or in the past, you will receive a 400 error response.[optional]
TypeEnum [ "MANAGER", "SOURCE_OWNER", "SEARCH", "ROLE_COMPOSITION", "MACHINE_ACCOUNT" ]The type of campaign. Could be extended in the future.[required]
EmailNotificationEnabledBooleanEnables email notification for this campaign[optional] [default to $false]
AutoRevokeAllowedBooleanAllows auto revoke for this campaign[optional] [default to $false]
RecommendationsEnabledBooleanEnables IAI for this campaign. Accepts true even if the IAI product feature is off. If IAI is turned off then campaigns generated from this template will indicate false. The real value will then be returned if IAI is ever enabled for the org in the future.[optional] [default to $false]
StatusEnum [ "PENDING", "STAGED", "CANCELING", "ACTIVATING", "ACTIVE", "COMPLETING", "COMPLETED", "ERROR", "ARCHIVED" ]The campaign's current status.[optional] [readonly]
CorrelatedStatusEnum [ "CORRELATED", "UNCORRELATED" ]The correlatedStatus of the campaign. Only SOURCE_OWNER campaigns can be Uncorrelated. An Uncorrelated certification campaign only includes Uncorrelated identities (An identity is uncorrelated if it has no accounts on an authoritative source).[optional]
CreatedSystem.DateTimeCreated time of the campaign[optional] [readonly]
TotalCertificationsInt32The total number of certifications in this campaign.[optional] [readonly]
CompletedCertificationsInt32The number of completed certifications in this campaign.[optional] [readonly]
Alerts[]CampaignAlertA list of errors and warnings that have accumulated.[optional] [readonly]
ModifiedSystem.DateTimeModified time of the campaign[optional] [readonly]
VarFilterCampaignAllOfFilter[optional]
SunsetCommentsRequiredBooleanDetermines if comments on sunset date changes are required.[optional] [default to $true]
SourceOwnerCampaignInfoCampaignAllOfSourceOwnerCampaignInfo[optional]
SearchCampaignInfoCampaignAllOfSearchCampaignInfo[optional]
RoleCompositionCampaignInfoCampaignAllOfRoleCompositionCampaignInfo[optional]
MachineAccountCampaignInfoCampaignAllOfMachineAccountCampaignInfo[optional]
SourcesWithOrphanEntitlements[]CampaignAllOfSourcesWithOrphanEntitlementsA list of sources in the campaign that contain ""orphan entitlements"" (entitlements without a corresponding Managed Attribute). An empty list indicates the campaign has no orphan entitlements. Null indicates there may be unknown orphan entitlements in the campaign (the campaign was created before this feature was implemented).[optional] [readonly]
MandatoryCommentRequirementEnum [ "ALL_DECISIONS", "REVOKE_ONLY_DECISIONS", "NO_DECISIONS" ]Determines whether comments are required for decisions during certification reviews. You can require comments for all decisions, revoke-only decisions, or no decisions. By default, comments are not required for decisions.[optional]

Examples

  • Prepare the resource
$GetActiveCampaigns200ResponseInner = Initialize-PSSailpoint.V2024GetActiveCampaigns200ResponseInner  -Id 2c9079b270a266a60170a2779fcb0007 `
-Name Manager Campaign `
-Description Everyone needs to be reviewed by their manager `
-Deadline 2020-03-15T10:00:01.456Z `
-Type MANAGER `
-EmailNotificationEnabled false `
-AutoRevokeAllowed false `
-RecommendationsEnabled true `
-Status ACTIVE `
-CorrelatedStatus CORRELATED `
-Created 2020-03-03T22:15:13.611Z `
-TotalCertifications 100 `
-CompletedCertifications 10 `
-Alerts null `
-Modified 2020-03-03T22:20:12.674Z `
-VarFilter null `
-SunsetCommentsRequired true `
-SourceOwnerCampaignInfo null `
-SearchCampaignInfo null `
-RoleCompositionCampaignInfo null `
-MachineAccountCampaignInfo null `
-SourcesWithOrphanEntitlements null `
-MandatoryCommentRequirement NO_DECISIONS
  • Convert the resource to JSON
$GetActiveCampaigns200ResponseInner | ConvertTo-JSON

[Back to top]