Show VPN status for networks in an organization
GET {{baseUrl}}/organizations/:organizationId/appliance/vpn/statuses
Show VPN status for networks in an organization
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
perPage | string | The number of entries per page returned. Acceptable range is 3 - 300. Default is 300. | |
startingAfter | string | A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it. | |
endingBefore | string | A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it. | |
networkIds | string | A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N_12345678&networkIds[]=L_3456 |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
X-Cisco-Meraki-API-Key | null |
RESPONSES
status: OK
[{"networkId":"N_12345678","networkName":"San Francisco Office","deviceSerial":"Q234-ABCD-1234","deviceStatus":"online","uplinks":[{"interface":"wan1","publicIp":"1.2.3.4"},{"interface":"wan2","publicIp":"2.3.4.5"}],"vpnMode":"hub","exportedSubnets":[{"subnet":"192.168.0.0/24","name":"sales-vlan"},{"subnet":"172.16.0.0/24","name":"engineering-vlan"}],"merakiVpnPeers":[{"networkId":"L_1234","networkName":"New York Office","reachability":"reachable"}],"thirdPartyVpnPeers":[{"name":"London Office","publicIp":"111.222.333.444","reachability":"reachable"}]},{"networkId":"L_1234","networkName":"New York Office","deviceSerial":"Q234-EFGH-5678","deviceStatus":"online","uplinks":[{"interface":"wan1","publicIp":"3.4.5.6"}],"vpnMode":"spoke","exportedSubnets":[{"subnet":"192.168.1.0/24","name":"sales-vlan"},{"subnet":"172.16.1.0/24","name":"engineering-vlan"}],"merakiVpnPeers":[{"networkId":"N_12345678","networkName":"San Francisco Office","reachability":"reachable"}],"thirdPartyVpnPeers":[{"name":"Tokyo Office","publicIp":"222.333.444.555","reachability":"reachable"}]}]