Session Management
User Session
Enter a username to start a session. The server sets a cookie that identifies you on every
subsequent request. Use Session Info to inspect live data from the server, and Logout to
destroy it. On page refresh the session is automatically restored if the cookie is still valid.
username
-
session id
-
started
-
visit count
-
POST
/api/session/start
Endpoint 01
Hello - No Parameters
Calls the base GET endpoint and returns the default greeting from the API.
GET /api/hello
Endpoint 02
Hello - With Name
Passes a name as a URL parameter and returns a personalised greeting.
GET /api/hello/{name}
Endpoint 03
Hello - POST Message
Sends a JSON body via POST and returns the server response.
POST /api/hello
Response Log
Waiting for requests