/v1/webhooks/stripe
POST
/v1/webhooks/stripe
const url = 'http://localhost:8787/v1/webhooks/stripe';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '"example"'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:8787/v1/webhooks/stripe \ --header 'Content-Type: application/json' \ --data '"example"'Request Body
Section titled “Request Body”Raw Stripe event payload — signature-verified, not schema-validated.
Media typeapplication/json
Examplegenerated
exampleResponses
Section titled “Responses”Event received (processed, ignored, or a duplicate — Stripe only needs the 2xx).
Media typeapplication/json
object
received
required
boolean
Example
{ "received": true}Missing or invalid Stripe-Signature.
Media typeapplication/problem+json
object
code
required
string
detail
required
string
status
required
number
title
required
string
type
required
string
Example
{ "code": "invalid_signature"}