@itentialopensource/adapter-meraki
Version:
This adapter integrates with system described as: merakiDashboardApi.
53 lines • 1.08 kB
JSON
{
"swagger": "2.0",
"info": {
"version": "0",
"title": "Meraki Dashboard API",
"description": "This collection of API calls provides an easy way to interact with a Cisco Meraki network"
},
"host": "api.meraki.com",
"basePath": "/api/v0",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"securityDefinitions": {
"meraki_api_key": {
"type": "apiKey",
"name": "X-Cisco-Meraki-API-Key",
"in": "header"
}
},
"security": [
{
"meraki_api_key": []
}
],
"paths": {
"/pets": {
"get": {
"description": "Returns all pets from the system",
"operationId": "getPets",
"responses": {
"200": {
"description": "Successful operation",
"examples": {
"application/json": [
{
"id": 1,
"name": "Riley",
"type": "Cat"
}
]
}
}
}
}
}
}
}