mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-13 18:02:29 +00:00
10 lines
No EOL
288 B
PowerShell
10 lines
No EOL
288 B
PowerShell
function VerifyAPIConnectivity {
|
|
[CmdletBinding()]
|
|
param ()
|
|
|
|
$uriSegments = [System.Collections.ArrayList]::new(@('extras'))
|
|
|
|
$uri = BuildNewURI -Segments $uriSegments -Parameters @{'format' = 'json'} -SkipConnectedCheck
|
|
|
|
InvokeNetboxRequest -URI $uri
|
|
} |