Add An HTTP Server To A Network

POST {{baseUrl}}/networks/:networkId/webhooks/httpServers

Add an HTTP server to a network #### Body Parameters Parameter|Type|Description :-------------: |:-------------: |:-------------: name| string| A name for easy reference to the HTTP server url| string| The URL of the HTTP server sharedSecret| string| A shared secret that will be included in POSTs sent to the HTTP server. This secret can be used to verify that the request was sent by Meraki.

Request Body

{"name"=>"<string>", "url"=>"<string>", "sharedSecret"=>"<string>"}

HEADERS

KeyDatatypeRequiredDescription
X-Cisco-Meraki-API-Keynull
Content-Typestring

RESPONSES

status: Created

{&quot;id&quot;:&quot;ABC123&quot;,&quot;networkId&quot;:&quot;N_123&quot;,&quot;name&quot;:&quot;My HTTP server&quot;,&quot;url&quot;:&quot;https://www.example.com/webhooks&quot;,&quot;sharedSecret&quot;:&quot;foobar&quot;,&quot;payloadTemplate&quot;:&quot;Meraki&quot;}