public/api-v2/project/Invoke-JiraValidateProjectKey.ps1
#https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-projectvalidate-key-get function Invoke-JiraValidateProjectKey { [CmdletBinding()] param ( # The key to validate [Parameter(Mandatory,Position=0)] [string] $Key, # The JiraContext object to use for the request [Parameter()] [object] $JiraContext ) process { $functionPath = "/rest/api/2/projectvalidate/key" $verb = "GET" $query = New-PACRestMethodQueryParams @{ key = $Key } $method = New-PACRestMethod $functionPath $verb $query $method.Invoke($JiraContext) } } |