warming up your workspace

HTTP

Applies to: general

HTTP is the request-response protocol of the web: a client sends a method (GET, POST, PUT, DELETE) to a URL and the server replies with a status code and a body. It is stateless, so each request carries its own context.

GET /users/42  ->  200 OK  { "id": 42, "name": "..." }

See also: rest-api, api