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

# V1 Webhooks

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = href;
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

Webhooks created using the [Developer Console][console] monitor changes to all
files and folders within a user's account. When creating one of these webhooks
it is not possible specify a specific object to bind the webhook to. To create
a webhook for a specific file or folder, you will need to leverage
<Link href="/guides/webhooks/v2">v2 webhooks</Link>.

<Warning>
  Webhooks created through this process will not show when listing all
  webhooks for a user via API call. All V1 webhooks are visible in the
  **Webhooks** tab in the [Developer Console][console].
</Warning>

[devconsole]: https://app.box.com/developers/console

[list_webhooks]: /guides/webhooks/v2/list-v2

[console]: https://app.box.com/developers/console
