Questions tagged [restful-architecture]

RESTful, or representational state transfer, is a style of software architecture for distributed hypermedia systems such as the World Wide Web.

Representational state transfer (REST) is a style of software architecture for distributed hypermedia systems such as the World Wide Web.

REST attempts to describe architectures that use HTTP or similar protocols by constraining the interface to a set of well-known, standard operations (like GET, POST, PUT, DELETE for HTTP). Here, the focus is on interacting with stateless resources, rather than messages or operations.

1187 questions
-4
votes
1 answer

Is it a valid REST API URL?

I am implementing a REST API that return a JSON containing the list of some commodities sold in a country. I am asking if this kind of URL is good for the pourpose and feed with the RESTfull principles to resources…
AndreaNobili
  • 40,955
  • 107
  • 324
  • 596
-5
votes
1 answer

Rest API resource naming convention

I have a students table which contains all his basic details with below schema. SsnId is the primary key {"name" : "Jack", "age" : 10, "ssnId": "12345" } I have another table students_by_region. A student can belong to multiple regions. The region…
1 2 3
79
80