Webhook trouble with form data in POST request [SOLVED]

Hi guys,
this is my first post and i hope you can help me out.

I am trying to set up a webhook to post data to a c# mvc app, according to the webhooks guide i can use the form field to send data as if it were a form on a website but when i create the webhook there is no form data

this is the json that i am using to create the webhook

{
  "eventName": "PulsosTest",
  "url": "http://httpbin.org/post",
  "headers": {
	"content-type": "application/x-www-form-urlencoded"
  },
  "requestType": "POST",
  "form": {
    "c": "hola_Mundo",
	"var2": "222"
  },
  "mydevices": true
}

the data in form is not available in my requests and is not displayed when the webhook is created. hope you can help me :slight_smile:

Well i found a solution to the problem, it seems to be a bug with the cli that ignores the form field…

thanks to:
http://www.starkiller.net/2015/03/10/twilio-spark/

he found a solution to the problem.

1 Like