Billing
Stripe webhook handler
Handles Stripe webhook events for subscription lifecycle management. Authenticated via Stripe webhook signature verification (not user-callable).
POST
/
api
/
stripe
/
webhook
Stripe webhook handler
curl --request POST \
--url https://app.dacard.ai/api/stripe/webhook \
--header 'Content-Type: text/plain' \
--data '<string>'import requests
url = "https://app.dacard.ai/api/stripe/webhook"
payload = "<string>"
headers = {"Content-Type": "text/plain"}
response = requests.post(url, data=payload, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'Content-Type': 'text/plain'}, body: '<string>'};
fetch('https://app.dacard.ai/api/stripe/webhook', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.dacard.ai/api/stripe/webhook",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "<string>",
CURLOPT_HTTPHEADER => [
"Content-Type: text/plain"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.dacard.ai/api/stripe/webhook"
payload := strings.NewReader("<string>")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "text/plain")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.dacard.ai/api/stripe/webhook")
.header("Content-Type", "text/plain")
.body("<string>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.dacard.ai/api/stripe/webhook")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'text/plain'
request.body = "<string>"
response = http.request(request)
puts response.read_body{
"received": true
}{
"error": "<string>",
"code": "AUTH_REQUIRED",
"message": "<string>",
"details": "<unknown>"
}Body
text/plain
The body is of type string.
Response
Webhook received
Example:
true
Was this page helpful?
⌘I
Stripe webhook handler
curl --request POST \
--url https://app.dacard.ai/api/stripe/webhook \
--header 'Content-Type: text/plain' \
--data '<string>'import requests
url = "https://app.dacard.ai/api/stripe/webhook"
payload = "<string>"
headers = {"Content-Type": "text/plain"}
response = requests.post(url, data=payload, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'Content-Type': 'text/plain'}, body: '<string>'};
fetch('https://app.dacard.ai/api/stripe/webhook', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.dacard.ai/api/stripe/webhook",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "<string>",
CURLOPT_HTTPHEADER => [
"Content-Type: text/plain"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.dacard.ai/api/stripe/webhook"
payload := strings.NewReader("<string>")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "text/plain")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.dacard.ai/api/stripe/webhook")
.header("Content-Type", "text/plain")
.body("<string>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.dacard.ai/api/stripe/webhook")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'text/plain'
request.body = "<string>"
response = http.request(request)
puts response.read_body{
"received": true
}{
"error": "<string>",
"code": "AUTH_REQUIRED",
"message": "<string>",
"details": "<unknown>"
}