public/api-v2/notification-scheme/Invoke-JiraGetNotificationScheme.ps1
$NotificationSchemeExpand = @("all","field","group","notificationSchemeEvents","projectRole","user") #https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-notificationscheme-id-get function Invoke-JiraGetNotificationScheme { [CmdletBinding()] param ( # The ID of the scheme to retrieve [Parameter(Mandatory,Position=0)] [int64] $SchemeId, # Select which fields on the returned object will be expanded [Parameter(Position=1)] [ValidateScript({ Compare-StringArraySubset $NotificationSchemeExpand $_ })] [string[]] $Expand, # The JiraContext object to use for the request [Parameter()] [object] $JiraContext ) process { $functionPath = "/rest/api/2/notificationscheme/$SchemeId" $verb = "GET" $query = New-PACRestMethodQueryParams if($PSBoundParameters.ContainsKey("Expand")){$query.Add("expand",$Expand -join ",")} $method = New-PACRestMethod $functionPath $verb $query $method.Invoke($JiraContext) } } |