Retrieve all items
GET /items
Create a item
POST /items
Retrieve a specific item
GET /items/{id}
Update a specific item
PATCH /items/{id}
Attaching a JSON body with the possible below fields:
title(string)message(string)
Delete a specific item
DELETE /items/{id}