REST Resources, URL (notes)

Wed 16 September 2015
read original posts: Restful API Design/Resources Restful API Design/URLs The fundamental concept in any RESTful API is the resource. A resource is an object with a type, associated data, relationships to other resources, and a set of methods that operate on it. It is similar to an object ...

REST API rules (notes)

Tue 15 September 2015
read original post REST APIs must be hypertext-driven A REST API should not be dependent on any single communication protocol, though its successful mapping to a given protocol may be dependent on the availability of metadata, choice of methods, etc. In general, any protocol element that uses a URI for ...