I know, some have looked into it. I'll certainly do it, if a customer pays (some of) my time...
# Script Alpha## Lookup against Cisco API to get Service Coverage Statusjson=$( curl -s -k -H "Content-Type: application/x-www-form-urlencoded" -X POST -d "client_id=..." -d "client_secret=..." -d "grant_type=client_credentials" https://cloudsso.cisco.com/as/token.oauth2 )token=$( jq -r ".access_token" <<<"$json" )# Use received Token now for an individual Requestcurl -X GET -s -k -H "Accept: application/json" -H "Authorization: Bearer $token" https://api.cisco.com/sn2info/v2/coverage/status/serial_numbers/JMX...