Description
Contains a list of all SQL-defined HTTP handlers created via CREATE HANDLER.
Columns
name (String) — Name of the handler.
protocol (Nullable(String)) — Composable protocol the handler is restricted to, or NULL if the handler is active on all HTTP endpoints (the built-in http/https ports and every HTTP-type composable protocol listener).
url_match_type (String) — How the URL is matched: exact, prefix or regexp.
url (String) — The URL pattern that the handler matches.
methods (Array(String)) — Allowed HTTP methods.
type (String) — The handler type (only query is supported).
query (String) — The SQL query executed by the handler. Secrets are hidden unless the user is allowed to see them.
create_query (String) — The CREATE HANDLER statement. Secrets are hidden unless the user is allowed to see them.
Last modified on August 14, 2026