Hi I'm looking to create a simple webhook receiver and dump the data into a table.
This is for receiving SMS using Zipwhip. Zipwhip will send a post with JSON.
Need to receive the JSON and process.
What is a simple way to accomplish this.
Thanks in advance.
This can be what the receiving method in your controller can look like on the receiving side. Make sure that your receiving and sending json object match.
I am actually working on a .net project receiving Json from a Angular front end, so this should be the same concept. Also make sure that what you are receiving is truly a workable object such as.
Also try looking into this example which would be helpful in regards to webhooks.
The type of the data is typically JSON or HTML form data, but it is possible to cast to a more specific type if desired.