REST API (REpresentational State Transfor" Application Programing Interface)
REST API (REpresentational State Transfor" Application Programing Interface)
It is a software that allows two applications to communicate with each other over the internet and through various devices. Every time you access an app like facebook check the weather on your smartphone, an API is used.
A REST API is an architectural style for an application program interface (API ) that uses HTTP requests to access and use data. REST is not programming language.
http://shreyashkolhe.com/api/users
CREATE | POST | POST - /api/createUsers |
READ | GET | GET - /api/readUsers |
UPDATE | PUT, PATCH | PATCH - /api/updateUsers |
DELETE | DELETE | DELETE - /api/deleteUsers |
Post a Comment