© 2026 Hedgehog Software, LLC
HttpApiBuilder.toWebHandler
console.log("request.url", request.url); console.log("request.method", request.method); HttpApi.reflect(api, { onGroup: () => {}, onEndpoint: ({ endpoint }) => { console.log("endpoint.path", endpoint.path); console.log("endpoint.method", endpoint.method); }, }); ... webHandler(request)
'request.url' 'https://colorful-mole-656.convex.site/get' 'request.method' 'GET' 'endpoint.path' '/get' 'endpoint.method' 'GET'