functions/Get-DrmmSite.ps1
function Get-DrmmSite { <# .SYNOPSIS Fetches data of the site (including total number of devices) identified by the given site Uid. .PARAMETER siteUid Provide site uid which will be used to return device data. #> # Function Parameters Param ( [Parameter(Mandatory=$True)] $siteUid ) # Declare Variables $apiMethod = 'GET' # Return device data $Response = New-ApiRequest -apiMethod $apiMethod -apiRequest "/v2/site/$siteUid" | ConvertFrom-Json return $Response } |