Match each HTTP verb commonly used in REST-based network automation APIs to its corresponding CRUD operation.
- GETRead
- POSTCreate
- PUTUpdate / Replace
- DELETEDelete
Answer
GET maps to Read, POST maps to Create, PUT maps to Update / Replace, and DELETE maps to Delete.
In REST-based APIs, standard HTTP verbs correspond directly to CRUD operations: GET retrieves information (Read), POST creates new resources (Create), PUT updates or overwrites existing resources (Update), and DELETE removes resources (Delete).
Step-by-Step Solution
Key Concept
Mapping HTTP Verbs to CRUD Operations in RESTful APIs