HTTP
4 pages.
Calling other services
Two ways to make an outbound HTTP call. A `client` block is a typed wrapper around a known API — name the base URL once, declare each operation as a…
Http.*
Make an outbound HTTP call to a URL you build at runtime — a webhook, a third-party API, a discovered endpoint…
HttpResponse
The result of an `Http.*` call. Carries the HTTP status code, the response body as text, and a convenience `IsSuccess` flag for 2xx. A non-2xx status…
a typed HTTP client (client)
A `client` block declares a typed wrapper around an external HTTP API: name the BaseUrl once, then declare each operation tagged with its verb —…