Webhooks on asp.net project?

I’m just trying to add a stripe webhook. Obviously all the buttons on the side are from an older version. According to the documentation here:

I should have a webhooks category under server actions? But I don’t see it in mine? I’m using asp.net.

Capture

I just need to deal with the checkout.session.completed event. I was liking how in the doc from above it would import all of the variables that stripe sends to the webhook. Is there a different way to do that now?

Hey Baub, Stripe webhooks are only available on PHP and NodeJS server models.

Ah gotcha. I was able to just add the object variables manually under $POST and everything is working as it should. Thanks