RAML for an Asynchronous RESTful API
Most APIs are designed to respond quickly to a request, generally 100ms or less. But there are cases where the backend systems will take longer than the expected reply. So the question is how to design a RESTful API to address these use cases? Solution Asynchronous REST APIs, or HTTP Polling, is the approach to…