HTTP Methods
Wed 05 Jun 2024
🎉 Hi: ... 🎉
Method | Description | Example |
---|---|---|
GET | Retrieve resource | HTTP GET https://localhost/api/users |
POST | Create a new resource | HTTP POST https://localhost/api/users/myname |
PUT | Update an existing resource | HTTP PUT https://localhost/api/users/12345/newname |
DELETE | Delete the resources | HTTP DELETE https://localhost/api/users/12345 |