My server API

RESTful JSON API

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:

Delete a specific item

DELETE /items/{id}