> ## Documentation Index
> Fetch the complete documentation index at: https://developers.respondent.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Aug 28, 2024

> Screener response rejection webhooks available in staging.

<a href="/docs/Changelog/overview" className="changelog-back">← Back to Product Updates</a>

<Update label="Aug 28, 2024">
  **Screener response webhooks for rejection (staging)**

  When a screener response is rejected or made visible again, a webhook is sent indicating whether `rejected` is true or false, with a body matching:

  ```json theme={null}
  {
    "event": "SCREENER_RESPONSES.UPDATED",
    "uuid": "67ec23b8-4016-42cc-933d-073d141d8e76",
    "created": "2024-08-28T22:20:04.248Z",
    "payload": {
      "resource": {
        "id": "66cf97060888f40f25b78ab4",
        "parentId": "66cf96ce0888f40f25b78297",
        "type": "screener-responses",
        "updatedFields": [
          {
            "name": "rejected",
            "oldValue": true,
            "newValue": false
          }
        ]
      }
    }
  }
  ```
</Update>
