REST

All API endpoints work based on REST. We have the operations GET, POST, PUT and DELETE which are all standard HTTP methods.

GET will always retreive information. POST will always create a new item. PUT will always update an item and DELETE will delete an item.

Last updated