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

# NetServer Webhooks element

> NetServer configuration related to webhooks - events broadcast to remote servers.

Configure values related to webhooks - events broadcast to remote servers. It is possible to configure custom proxy settings. See the [CustomProxy section][2] for details.

```XML theme={null}
<Webhooks>
  <add key="EnableWebhooks" value="true" />
  <add key="RequireHttps" value="true" />
  <add key="ValidateHttps" value="true" />
</Webhooks>
```

| Name           | Description                                                                                                                                             | Default                                     |
| -------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- |
| EnableWebhooks | Broadcast events to remote servers.                                                                                                                     | false                                       |
| NumThreads     | How many background threads to run for dispatching webhooks.                                                                                            | 0 = scale automatically according to demand |
| RequireHttps   | Require webhooks target URLs to use HTTPS protocol. Should only be turned off during development.                                                       | true                                        |
| Timeout        | Stop background threads after X number of seconds of idle time.                                                                                         | 30 seconds                                  |
| ValidateHttps  | Require valid public HTTPS certificates. Self-signed or expired certs on webhook target URLs are refused. Should only be turned off during development. | true                                        |

See the [NetServer Core reference][1] for details about handling this programmatically.

[1]: https://github.com/SuperOfficeDocs/superoffice-docs/blob/main/docs/en/api/reference/netserver/core/SuperOffice.Configuration.ConfigFile.Webhooks.yml

[2]: ./customproxy


## Related topics

- [NetServer CustomProxy element](/en/onsite/web-config/customproxy.md)
- [Webhook subscription](/en/automation/webhook/dev/subscription.md)
- [NetServer Reporter element](/en/onsite/web-config/reporter.md)
- [NetServer Services element](/en/onsite/web-config/services.md)
- [NetServer Scripting element](/en/onsite/web-config/scripting.md)
- [NetServer Infrastructure element](/en/onsite/web-config/infrastructure.md)
