Webhook returning 414 Error

Hi guys,

I am having trouble with getting my web hook to POST data.

The response I am getting is 414 Error - Request-URI Too Large.

event: hook-response/XXXXXXXXXXXXXXXXXXXXXXXXX/Event_1/0
data: {"data":"\"<!DOCTYPE HTML PUBLIC \\\"-//IETF//DTD HTML 2.0//EN\\\">\\n<html><head>\\n<title>414 Request-URI Too Large</title>\\n</head><body>\\n<h1>Request-URI Too Large</h1>\\n<p>The requested URL's length exceeds the capacity\\nlimit for this server.<br />\\n</p>\\n</body></html>\\n\"","ttl":"60","published_at":"2015-02-16T09:10:45.297Z","coreid":"XXXXXXXXXXXXXXXXXXXXX"}

I assume this is a problem at the web server end.

Webhook json:

{
  "eventName": "Event_1",
  "url": "http://api.example.com.au/api/v1/add",
  "coreID": "XXXXXXXXXXXXXX",
  "requestType": "POST",
  "query": "access_token=123&count=1&_METHOD=PUT",
  "mydevices": true
}

Is there any way to see the request which the webhook is posting?

Is the query parameter being used correctly?

Thanks,
Sam

Update: The 414 response is not coming from the web server (the transfer logs don’t show any of these requests).

I found by changing the url in the json to http://api.example.com.au/api/v1/add# (hash on the end), this stopped the 414 error.

Can anyone provide some more information on how to use “query” in the json file.

Thanks,
Sam