Public/Get-P1ApiKey.ps1
function Get-P1ApiKey { <# .Synopsis Gets the stored the PlannerOne API key. .Description Read the locally stored PlannerOne API key to access private PlannerOne feed. #> [cmdletbinding()] param( ) Process { return Get-ApiKey } } |