> For the complete documentation index, see [llms.txt](https://support.whapi.cloud/help-desk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://support.whapi.cloud/help-desk/receiving/webhooks/incoming-webhooks-format/other/story-status-from-your-contacts.md).

# Story (status) from your contacts

Now you can receive notifications when a new story (status) is created by your contact. If a story (status) is available to you, it will be sent with detailed information by callback.

Make sure you have *`PATCH chats`* enabled in your channel settings. We mentioned more about the events here:[Detailed webhook settings](/help-desk/receiving/webhooks/detailed-webhook-settings.md#mode-setting)

Please note that due to the technical peculiarities of the structure of Statuses in WhatsApp, you will receive information about each new story in this format, without grouping by sender.

An example of an incoming webhook when your contact creates a new status:

```
{
  "chats_updates": [
    {
      "before_update": {
        "id": "status@broadcast",
        "type": "broadcast",
        "timestamp": 1735220224,
        "unread": 1,
        "not_spam": true,
        "last_message": {
          "id": "yqIZaDN2Lmo14dM-hIwA",
          "from_me": false,
          "type": "story",
          "chat_id": "stories",
          "timestamp": 1735220224,
          "source": "api",
          "text": {
            "body": "Text"
          },
          "from": "61371989950",
          "from_name": "Jonathan"
        }
      },
      "after_update": {
        "id": "status@broadcast",
        "type": "broadcast",
        "timestamp": 1735220295,
        "unread": 2,
        "not_spam": true,
        "last_message": {
          "id": "7JTjVMAt0.4c2_5mCi8nVg-hCMA",
          "from_me": false,
          "type": "story",
          "chat_id": "stories",
          "timestamp": 1735220295,
          "source": "mobile",
          "image": {
            "id": "jpeg-ec94e334c02dd3ee1c03fe620a2f2756-842300",
            "mime_type": "image/jpeg",
            "file_size": 36988,
            "sha256": "I6JdJLuFp1L7ISaxRVbKxGgV9loH/nlgeoSs4kcSbW4=",
            "width": 1200,
            "height": 900,
            "preview": "data:image/jpeg;base64,/9j/4AAQSkZJRg....."
          },
          "from": "919984351847",
          "from_name": "Gerald"
        }
      },
      "changes": [
        "timestamp",
        "unread",
        "last_message"
      ]
    }
  ],
  "event": {
    "type": "chats",
    "event": "patch"
  },
  "channel_id": "MANTIS-PF2382"
}
```
