I’m self-educating and the current challenge is to learn and understand REST. Can I look to the dynalist api as something I might understand (because i understand the objects) and learn by example?
Our API is not RESTful (assuming you’re referring to the general standard that a RESTful API should make use of GET
, POST
, DELETE
, PUT
to do different tasks). In Dynalist API all requests are POSTs, so it’s not RESTful.
If you want to look into a RESTful API, GitHub’s API is an example: https://developer.github.com/v3/
1 Like
Thanks for the response. I’m still on the lookout, Github is the right kind of thing but i want something less advanced. I barely understand its human interface to try to figure the Api and the REST concept at the same time is too much.