Resources are the key abstraction in REST. A resource is any information that can be named and addressed. Resources should be:
/users
not /getUsers
/users/123/orders/456
/users
, not /user
)Resources represent entities in your domain model and should map to business objects or data entities.