---
title: "Stripe webhook REST API | HitKeep"
description: "Reference for the HitKeep REST API operation Stripe webhook, including request parameters, responses, and authentication notes."
canonical: "https://hitkeep.com/api/operations/apicloudwebhooksstripe/"
---

# Stripe webhook REST API

POST

/api/cloud/webhooks/stripe

FetchcURL

```
const url = 'http://127.0.0.1:25737/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 http://127.0.0.1:25737/api/cloud/webhooks/stripe
```

-

Processes Stripe billing lifecycle events for managed cloud subscriptions.

## Responses

### 200

Webhook processed

### 400

Invalid webhook

application/json

object

**message**

string

##### Examplegenerated

```
{
  "message": "example"
}
```

[Previous Complete managed social signup](https://hitkeep.com/api/operations/apicloudsignupsocialcomplete/)[Next Overview](https://hitkeep.com/api/operations/tags/user/)
