> ## Documentation Index
> Fetch the complete documentation index at: https://docs.get-exo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Webhook not found

> No such webhook endpoint exists in this organization.

This page is the resolution target of the RFC 9457 `type` URI on every `webhook_not_found` problem body: `https://docs.get-exo.com/errors/webhook_not_found`.

**HTTP status: `404` Not Found**.

```json theme={"theme":{"light":"github-light-default","dark":"github-dark-default"}}
{
  "type": "https://docs.get-exo.com/errors/webhook_not_found",
  "title": "Webhook not found",
  "status": 404,
  "detail": "Webhook '3b0f2c74-0f2b-4b1a-9d51-6a7f2e2b9c10' does not exist in this organization.",
  "code": "webhook_not_found",
  "requestId": "req_9f2c41ab7d0e5c18",
  "suggestedAction": "Check the webhook id returned by GET /v1/webhooks."
}
```

## Why it happens

Webhook endpoints are organization-level configuration. An id from another organization, or one already deleted, resolves to nothing.

## How to fix it

* List endpoints with `GET /v1/webhooks` and use an id from there.
* If the endpoint was auto-disabled rather than deleted it still exists; read its state with `GET /v1/webhooks/{webhook_id}`.

## Related

* [`webhook_limit_reached`](/errors/webhook_limit_reached)
* [`not_found`](/errors/not_found)
* [Errors](/platform/errors) for the envelope and the full catalogue
