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