QuestionQ288

IP Services

Which two HTTP methods are appropriate for operations carried out by REST-based APIs?

Choose two
  • A REMOVE
  • B REDIRECT
  • C POST
  • D GET
  • E POP
Explanation

REST-based APIs use standard HTTP verbs to act on resources. GET is the standard method for retrieving a resource representation, and POST is used to submit data to a resource or trigger server-side processing such as creating a subordinate resource. The other listed choices are not standard HTTP methods used for REST API actions.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!