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