Clerk inbound webhook (provider callback)
curl --request POST \
--url https://api.signuprisk.com/internal/webhooks/clerkconst options = {method: 'POST'};
fetch('https://api.signuprisk.com/internal/webhooks/clerk', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.signuprisk.com/internal/webhooks/clerk"
response = requests.post(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signuprisk.com/internal/webhooks/clerk"
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
Clerk inbound webhook (provider callback)
Provider-owned callback route. Authenticated by Svix signature headers (Svix-Id, Svix-Signature, Svix-Timestamp) over the raw body. NOT a customer-callable endpoint. Registered only when CLERK_ENABLED.
POST
/
internal
/
webhooks
/
clerk
Clerk inbound webhook (provider callback)
curl --request POST \
--url https://api.signuprisk.com/internal/webhooks/clerkconst options = {method: 'POST'};
fetch('https://api.signuprisk.com/internal/webhooks/clerk', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.signuprisk.com/internal/webhooks/clerk"
response = requests.post(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signuprisk.com/internal/webhooks/clerk"
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.