> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.360messenger.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.360messenger.com/_mcp/server.

# Overview

Anonymized examples of **outbound webhooks** your server receives after event scopes are enabled.

Import tip: these requests target `{{webhook_url}}` only so you can inspect the JSON in Postman Docs / Examples. Do not treat them as Gateway API endpoints.

#### JavaScript

```javascript
{
  "event": "<event_name>",
  "createdAt": "2026-01-15 12:00:00",
  "serviceId": 1001,
  "data": { /* event-specific fields; always includes isGroup */ }
}

```

#### Python

```python
{
  "event": "<event_name>",
  "createdAt": "2026-01-15 12:00:00",
  "serviceId": 1001,
  "data": { /* event-specific fields; always includes isGroup */ }
}

```

#### Java

```java
{
  "event": "<event_name>",
  "createdAt": "2026-01-15 12:00:00",
  "serviceId": 1001,
  "data": { /* event-specific fields; always includes isGroup */ }
}

```

#### cURL

```curl
{
  "event": "<event_name>",
  "createdAt": "2026-01-15 12:00:00",
  "serviceId": 1001,
  "data": { /* event-specific fields; always includes isGroup */ }
}

```

#### Shell

```bash
{
  "event": "<event_name>",
  "createdAt": "2026-01-15 12:00:00",
  "serviceId": 1001,
  "data": { /* event-specific fields; always includes isGroup */ }
}

```