Summary:
Lists Meraki Cloud Controllers
URL:
http(s)://{server hostname}/api/MerakiCloudControllers?serverId={serverId}
If the serverId is left blank, then the server will be the one being contacted.
Methods summary
- GET Method - lists Meraki Cloud Controllers.
GET Method detail
Lists Meraki Cloud Controllers.
Response:
Name | Description |
---|---|
serverID |
the Entuity server ID string. |
objectID | the StormWorks object ID of the Meraki device on the server. |
name | the display name of the device in ENA. |
stormWorksType | StormWorks type. |
webhookURL | this is the URL that should be put in the settings of the cloud controller (using the Cisco website, not anything in ENA). |
secretKeyIsSet | if the secret key is set. |
sharedSecret | if the secret key is shared. |
webhookEnabled | if the webhook is enabled. |
status | this is the same as the status displayed in the ENA webhook admin page. |
merakiDeviceCount | number of devices managed by the cloud controller. |
secretKey | key that should be entered on the cloud controller settings page (same as the URL). |
Example:
INPUT
curl -u admin:admin https://localhost/api/MerakiCloudControllers
OUTPUT
{
"items" : [ {
"serverId" : "9a55e715-3c18-4ef1-9cc9-f1b7f29ea139",
"objectId" : 5073,
"name" : "Meraki",
"stormWorksType" : "MerakiCloudController",
"webhookURL" : "https://localhost/webUI/api/webhook/cloudAlert/Meraki?serverId=9a55e715-3c18-4ef1-9cc9-f1b7f29ea139&objectId=5073",
"secretKeyIsSet" : false,
"sharedSecret" : null,
"webhookEnabled" : true,
"status" : "0 alerts in the last 24hrs",
"merakiDeviceCount" : 109
} ],
"count" : 1
}
Comments
0 comments
Please sign in to leave a comment.