Stripe inbound webhook (provider callback)
curl --request POST \
--url https://api.signuprisk.com/internal/webhooks/stripeconst options = {method: 'POST'};
fetch('https://api.signuprisk.com/internal/webhooks/stripe', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.signuprisk.com/internal/webhooks/stripe"
response = requests.post(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signuprisk.com/internal/webhooks/stripe"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Provider Webhooks
Stripe inbound webhook (provider callback)
Provider-owned callback route. Authenticated by the Stripe-Signature header over the raw body. NOT a customer-callable endpoint. Registered only when STRIPE_ENABLED and STRIPE_WEBHOOK_ENABLED. Returning 200 only acknowledges receipt; verified synchronization controls entitlement activation.
POST
/
internal
/
webhooks
/
stripe
Stripe inbound webhook (provider callback)
curl --request POST \
--url https://api.signuprisk.com/internal/webhooks/stripeconst options = {method: 'POST'};
fetch('https://api.signuprisk.com/internal/webhooks/stripe', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.signuprisk.com/internal/webhooks/stripe"
response = requests.post(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signuprisk.com/internal/webhooks/stripe"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Response
Acknowledged.