nerdexam
Cisco

200-301 · Question #1398

Drag and Drop Question Drag and drop the HTTP verbs from the left onto the API operations on the right. Answer:

The correct answer is POST; DELETE; PUT; PATCH; GET. The correct arrangement maps HTTP verbs to their standard RESTful API operations: POST is used to CREATE a new resource, DELETE is used to REMOVE a resource, PUT is used to REPLACE/UPDATE an entire resource, PATCH is used to PARTIALLY UPDATE a resource, and GET is used to RETRIEV

Submitted by kev92· Mar 5, 2026Understanding RESTful API design principles and the correct usage of HTTP verbs mapped to Create, Read, Update, and Delete (CRUD) operations - commonly tested in API development, cloud, and web services certifications.

Question

Drag and Drop Question Drag and drop the HTTP verbs from the left onto the API operations on the right. Answer:

Exhibit

200-301 question #1398 exhibit

Answer Area

Drag items

DELETEGETPATCHPOSTPUT

Correct arrangement

  • POST
  • DELETE
  • PUT
  • PATCH
  • GET

Explanation

The correct arrangement maps HTTP verbs to their standard RESTful API operations: POST is used to CREATE a new resource, DELETE is used to REMOVE a resource, PUT is used to REPLACE/UPDATE an entire resource, PATCH is used to PARTIALLY UPDATE a resource, and GET is used to RETRIEVE/READ a resource. These mappings follow the REST architectural constraints where each HTTP method has a specific semantic meaning aligned with CRUD (Create, Read, Update, Delete) operations.

Topics

#REST API#HTTP Methods#CRUD Operations#API Design

Community Discussion

No community discussion yet for this question.

Full 200-301 Practice