Match each HTTP request method used in REST-based network management APIs to its primary function and corresponding CRUD operation.
- GETRead: Retrieves configuration or operational data from a resource without modifying it
- POSTCreate: Submits data to create a new resource at the specified endpoint URI
- PUTUpdate/Replace: Replaces an entire existing resource configuration with a complete new dataset
- PATCHUpdate/Modify: Makes partial changes to specific fields of an existing resource
Answer
GET maps to Read (retrieves data), POST maps to Create (creates a new resource), PUT maps to Update/Replace (completely replaces a resource), and PATCH maps to Update/Modify (partially updates specific fields).
In RESTful architecture, standard HTTP request verbs correspond directly to basic CRUD database operations: GET reads resource state, POST creates new resources, PUT completely replaces existing resources, and PATCH performs partial modifications to existing resources.
Step-by-Step Solution
Key Concept
HTTP Verbs and CRUD Operations in REST-Based APIs
Estimated Time:45s