Skip to main content
POST
/
stripe
/
webhook
Handle Stripe webhook
curl --request POST \
  --url https://api.plec-it.com/stripe/webhook \
  --header 'Content-Type: application/json' \
  --header 'stripe-signature: <stripe-signature>' \
  --data '{}'
{
  "success": true
}

Headers

stripe-signature
string
required

Stripe webhook signature (e.g. t=1234567890,v1=...)

Query Parameters

dryRun
enum<string>
default:true
required

When true, validates/simulates but performs no writes. Required for docs playground.

Available options:
true

Body

application/json

Raw Stripe event payload (application/json). Schema varies by event type.

Stripe Event object

Response

Event processed

success
boolean
Example:

true