Public
Documentation Settings

Meraki Webhooks - Samples v0.1

Overview

A collection of sample Meraki alerts that would normally be delivered via a webhook.

Use this collection to "post" to your receiving server to simulate Meraki sending this data.

Learn more
https://meraki.io/webhooks

POSTAPs came up

{{webhook-url}}
HEADERS
Content-Type

application/json

Bodyraw
{
  "version": "0.1",
  "sharedSecret": "secret",
  "sentAt": "2021-10-07T08:38:40.522804Z",
  "organizationId": "2930418",
  "organizationName": "My organization",
  "organizationUrl": "https://dashboard.meraki.com/o/VjjsAd/manage/organization/overview",
  "networkId": "N_24329156",
  "networkName": "Main Office",
  "networkUrl": "https://n1.meraki.com//n//manage/nodes/list",
  "networkTags": [],
  "deviceSerial": "Q234-ABCD-5678",
  "deviceMac": "00:11:22:33:44:55",
  "deviceName": "My access point",
  "deviceUrl": "https://n1.meraki.com//n//manage/nodes/new_list/000000000000",
  "deviceTags": [
    "tag1",
    "tag2"
  ],
  "deviceModel": "MR",
  "alertId": "0000000000000000",
  "alertType": "APs came up",
  "alertTypeId": "started_reporting",
  "alertLevel": "informational",
  "occurredAt": "2018-02-11T00:00:00.123450Z",
  "alertData": {}
}
Example Request
curl
curl --location -g '{{webhook-url}}' \
--header 'Content-Type: application/json' \
--data '{
  "version": "0.1",
  "sharedSecret": "secret",
  "sentAt": "2021-10-07T08:38:40.522804Z",
  "organizationId": "2930418",
  "organizationName": "My organization",
  "organizationUrl": "https://dashboard.meraki.com/o/VjjsAd/manage/organization/overview",
  "networkId": "N_24329156",
  "networkName": "Main Office",
  "networkUrl": "https://n1.meraki.com//n//manage/nodes/list",
  "networkTags": [],
  "deviceSerial": "Q234-ABCD-5678",
  "deviceMac": "00:11:22:33:44:55",
  "deviceName": "My access point",
  "deviceUrl": "https://n1.meraki.com//n//manage/nodes/new_list/000000000000",
  "deviceTags": [
    "tag1",
    "tag2"
  ],
  "deviceModel": "MR",
  "alertId": "0000000000000000",
  "alertType": "APs came up",
  "alertTypeId": "started_reporting",
  "alertLevel": "informational",
  "occurredAt": "2018-02-11T00:00:00.123450Z",
  "alertData": {}
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTAPs went down

{{webhook-url}}
HEADERS
Content-Type

application/json

Bodyraw
{
  "version": "0.1",
  "sharedSecret": "secret",
  "sentAt": "2021-10-07T08:38:40.507166Z",
  "organizationId": "2930418",
  "organizationName": "My organization",
  "organizationUrl": "https://dashboard.meraki.com/o/VjjsAd/manage/organization/overview",
  "networkId": "N_24329156",
  "networkName": "Main Office",
  "networkUrl": "https://n1.meraki.com//n//manage/nodes/list",
  "networkTags": [],
  "deviceSerial": "Q234-ABCD-5678",
  "deviceMac": "00:11:22:33:44:55",
  "deviceName": "My access point",
  "deviceUrl": "https://n1.meraki.com//n//manage/nodes/new_list/000000000000",
  "deviceTags": [
    "tag1",
    "tag2"
  ],
  "deviceModel": "MR",
  "alertId": "0000000000000000",
  "alertType": "APs went down",
  "alertTypeId": "stopped_reporting",
  "alertLevel": "critical",
  "occurredAt": "2018-02-11T00:00:00.123450Z",
  "alertData": {}
}
Example Request
curl
curl --location -g '{{webhook-url}}' \
--header 'Content-Type: application/json' \
--data '{
  "version": "0.1",
  "sharedSecret": "secret",
  "sentAt": "2021-10-07T08:38:40.507166Z",
  "organizationId": "2930418",
  "organizationName": "My organization",
  "organizationUrl": "https://dashboard.meraki.com/o/VjjsAd/manage/organization/overview",
  "networkId": "N_24329156",
  "networkName": "Main Office",
  "networkUrl": "https://n1.meraki.com//n//manage/nodes/list",
  "networkTags": [],
  "deviceSerial": "Q234-ABCD-5678",
  "deviceMac": "00:11:22:33:44:55",
  "deviceName": "My access point",
  "deviceUrl": "https://n1.meraki.com//n//manage/nodes/new_list/000000000000",
  "deviceTags": [
    "tag1",
    "tag2"
  ],
  "deviceModel": "MR",
  "alertId": "0000000000000000",
  "alertType": "APs went down",
  "alertTypeId": "stopped_reporting",
  "alertLevel": "critical",
  "occurredAt": "2018-02-11T00:00:00.123450Z",
  "alertData": {}
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTAir Marshal - Rogue AP detected

{{webhook-url}}
HEADERS
Content-Type

application/json

Bodyraw
{
  "version": "0.1",
  "sharedSecret": "secret",
  "sentAt": "2021-10-07T08:38:40.558462Z",
  "organizationId": "2930418",
  "organizationName": "My organization",
  "organizationUrl": "https://dashboard.meraki.com/o/VjjsAd/manage/organization/overview",
  "networkId": "N_24329156",
  "networkName": "Main Office",
  "networkUrl": "https://n1.meraki.com//n//manage/nodes/list",
  "networkTags": [],
  "deviceSerial": "",
  "deviceMac": "",
  "deviceName": "",
  "deviceUrl": "",
  "deviceTags": [],
  "deviceModel": "",
  "alertId": "0000000000000000",
  "alertType": "Air Marshal - Rogue AP detected",
  "alertTypeId": "foreign_ap",
  "alertLevel": "warning",
  "occurredAt": "2018-02-11T00:00:00.123450Z",
  "alertData": {
    "minFirstSeen": 0,
    "maxLastSeen": 10,
    "ssidName": "My SSID"
  }
}
Example Request
curl
curl --location -g '{{webhook-url}}' \
--header 'Content-Type: application/json' \
--data '{
  "version": "0.1",
  "sharedSecret": "secret",
  "sentAt": "2021-10-07T08:38:40.558462Z",
  "organizationId": "2930418",
  "organizationName": "My organization",
  "organizationUrl": "https://dashboard.meraki.com/o/VjjsAd/manage/organization/overview",
  "networkId": "N_24329156",
  "networkName": "Main Office",
  "networkUrl": "https://n1.meraki.com//n//manage/nodes/list",
  "networkTags": [],
  "deviceSerial": "",
  "deviceMac": "",
  "deviceName": "",
  "deviceUrl": "",
  "deviceTags": [],
  "deviceModel": "",
  "alertId": "0000000000000000",
  "alertType": "Air Marshal - Rogue AP detected",
  "alertTypeId": "foreign_ap",
  "alertLevel": "warning",
  "occurredAt": "2018-02-11T00:00:00.123450Z",
  "alertData": {
    "minFirstSeen": 0,
    "maxLastSeen": 10,
    "ssidName": "My SSID"
  }
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers