Stripe webhook
POST
/api/cloud/webhooks/stripe
const url = 'https://hitkeep.com/api/cloud/webhooks/stripe';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://hitkeep.com/api/cloud/webhooks/stripeProcesses Stripe billing lifecycle events for managed cloud subscriptions.
Responses
Section titled “ Responses ”Webhook processed
Invalid webhook
Media type application/json
object
message
string
Example generated
{ "message": "example"}