endpoint
Binds an HTTP method and path to a request schema and a pipeline.
Declaration
Attributes
Supported methods: GET, POST, PUT, PATCH, DELETE, OPTIONS, HEAD.
Path templates
A single segment binds to ctx.request.path.<param>.
A trailing ... matches all remaining segments:
Request validation
The request block validates path, query, headers, and body independently.
Authentication overrides
An endpoint inherits global authentication guards unless it opts out explicitly.