But you can disable and enable it via API.
Here is an example of a Powershell script.
# Set your Meraki API credentials
$apiKey = 'your-api-key'
# Sets the network ID and port number
$networkId = 'your-network-id'
$portNumber = 'your-port-number'
# Create the API header
$headers = @{
'X-Cisco-Meraki-API-Key' = $apiKey
'Content-Type' = 'application/json'
}
# Set the API URL to update the port
# Disable the port
Invoke-RestMethod -Uri $updatePortUrl -Method PUT -Body ('{"enabled": false}') -Headers $headers
# Wait for a specified time
Start-Sleep -Seconds 60
# Enable the port
Invoke-RestMethod -Uri $updatePortUrl -Method PUT -Body ('{"enabled": true}') -Headers $headers
I am not a Cisco Meraki employee. My suggestions are based on documentation of Meraki best practices and day-to-day experience.
Please, if this post was useful, leave your kudos and mark it as solved.