Public/Deployment/Get-R1WhatsNew.ps1
|
# .ExternalHelp psRadiantOne-help.xml function Get-R1WhatsNew { [CmdletBinding()] [OutputType('System.Object')] param( ) Begin { Assert-R1Session -RequireToken }#begin Process { $URI = Resolve-R1ServiceUrl -Service Settings -Path 'dashboard/what_new' Invoke-R1RestMethod -Uri $URI -Method GET }#process End { }#end } |