type
Endpoint
type Endpoint = core.EndpointOne application-authored method and path handler mounted at root, collection, or global scope.
Methodstring- CONNECT, DELETE, GET, HEAD, OPTIONS, PATCH, POST, or PUT.
Pathstring- A leading-slash path with optional complete :parameter segments.
Summarystring- Optional generated OpenAPI operation summary.
MaxBodyBytesint64- Raw body bound; zero inherits HandlerOptions and a negative value opts trusted streaming out.
HandlerEndpointHandler- Trusted compiled application handler code.
Root endpoints mount below /api. Collection and global endpoints mount below their resource route and run before a matching built-in route for the same method.
Custom endpoints are anonymous by default. Handler must enforce endpoint-specific authorization.