The RESTbook

Welcome, wanderer!
Leave thy mark here.
REST awhile...

REST API Usage

To sign the guestbook, make a POST request to:

/api/guests

With JSON body:

{"nickname": "YourNickname", "comment": "Hello world!"}

You will receive a deleteToken in the response. Save it to delete your entry later:

DELETE /api/guests/{deleteToken}