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