Public/Get-MerakiDeviceSensorCommand.ps1
function Get-MerakiDeviceSensorCommand { <# .SYNOPSIS Retrieves the details of a specific sensor command for a specified device. .DESCRIPTION This function allows you to retrieve the details of a specific sensor command for a specified device by providing the authentication token, device serial number, and the command ID. .PARAMETER AuthToken The authentication token (API key) required to access the Meraki Dashboard API. .PARAMETER Serial The serial number of the device. .PARAMETER CommandId The ID of the sensor command. .EXAMPLE Get-MerakiDeviceSensorCommand -AuthToken "your-api-token" -Serial "Q2XX-XXXX-XXXX" -CommandId "commandId123" This example retrieves the details of the sensor command with ID "commandId123" for the device with serial number "Q2XX-XXXX-XXXX". .NOTES For more information about the Meraki API, visit https://developer.cisco.com/meraki/api-v1/. #> [CmdletBinding()] param ( [parameter(Mandatory=$true)] [string]$AuthToken, [parameter(Mandatory=$true)] [string]$Serial, [parameter(Mandatory=$true)] [string]$CommandId ) try { $header = @{ "X-Cisco-Meraki-API-Key" = $AuthToken "content-type" = "application/json; charset=utf-8" } $url = "https://api.meraki.com/api/v1/devices/$Serial/sensor/commands/$CommandId" $response = Invoke-RestMethod -Method Get -Uri $url -headers $header -UserAgent "MerakiPowerShellModule/1.1.0 DocNougat" return $response } catch { Write-Debug $_ Throw $_ } } |