# 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"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://support.whapi.cloud/help-desk/receiving/webhooks/incoming-webhooks-format/other/story-status-from-your-contacts.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
