Stripe webhook receiver
POST
/v1/licensing/webhooks/stripe/{tenantId}
const url = 'https://api.extport.dev/api/v1/licensing/webhooks/stripe/example';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.extport.dev/api/v1/licensing/webhooks/stripe/exampleSet this URL (with your tenant id) as a webhook endpoint in Stripe. Authenticated by webhook signature.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”tenantId
required
string
Responses
Section titled “Responses”Handled or ignored
Bad signature
Unknown tenant or no stripe credential