Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | True if the endpoint is enabled for this location. |
| networks | object | |
| require_token | boolean | True if the endpoint requires [user identity](https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/agentless/dns/dns-over-https/#filter-doh-requests-by-user) authentication. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/zero-trust-gateway_doh_endpoint",
"title": "zero-trust-gateway_doh_endpoint",
"properties": {
"enabled": {
"description": "True if the endpoint is enabled for this location.",
"example": true,
"type": "boolean"
},
"networks": {
"$ref": "#/components/schemas/zero-trust-gateway_ip_networks"
},
"require_token": {
"description": "True if the endpoint requires [user identity](https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/agentless/dns/dns-over-https/#filter-doh-requests-by-user) authentication.",
"example": true,
"type": "boolean"
}
},
"type": "object"
}