Hello All,
I created the sandbox account and registered an endpoint for the webhook on all the events and I would like to debug and see the notification message but whenever the payment is made or subscription is created or cancelled not receiveing any notifications on the endpoint.
Need experts help here.
Note: Used the following to test the web app running in local with remote address.
https://marketplace.visualstudio.com/items?itemName=vs-publisher-1448185.ConveyorbyKeyoti
Thanks in advance.
Solved! Go to Solution.
โ05-20-2019 07:55 AM
Thanks for the information.
I made it work by creating an endpoint which is accessible from the internet and received the notifications.
sample endpoint
Controller - Add the below action
[HttpPost]
public ActionResult Webhook()
{
string data = new StreamReader(Request.InputStream).ReadToEnd();
// Process the data
}
hope this helps for others
โ05-21-2019 12:56 PM - edited โ05-21-2019 01:03 PM
โ05-20-2019 08:33 PM
Thanks for the information.
I made it work by creating an endpoint which is accessible from the internet and received the notifications.
sample endpoint
Controller - Add the below action
[HttpPost]
public ActionResult Webhook()
{
string data = new StreamReader(Request.InputStream).ReadToEnd();
// Process the data
}
hope this helps for others
โ05-21-2019 12:56 PM - edited โ05-21-2019 01:03 PM
โ05-21-2019 03:40 PM