Tutorial Guide > REST Tutorial > Understanding REST and the Tutorial Workflows
 
Understanding REST and the Tutorial Workflows
Before working through specific examples using code and the Studio UI, it can be valuable to become familiar with some REST concepts. A REST service typically has the following characteristics:
Client-Server—REST uses a pull-based style; in other words, the consuming components pull information about representations.
Stateless—Each request from client to server contains all the information necessary to understand the request, and cannot take advantage of any stored context on the server.
Standard Interface—All resources are accessed using an interface such as the HTTP verbs of GET, POST, PUT, and DELETE.
Named Resources—Each resource is named using a URL.
This section includes these topics:
Basic REST Workflow
Overview of the ACT Example and Summary of Tasks