QuestionQ14

REST API

Which two HTTP methods does a REST API client use to execute RPC requests on the server?

Choose two
  • A POST
  • B HEAD
  • C GET
  • D CONNECT
Explanation

GET requests retrieve the representation associated with a target resource, while POST requests submit content for processing by the target resource. HEAD returns the same headers as GET without a response body, and CONNECT establishes a tunnel; neither executes an RPC operation.

Learn more

Community Discussion

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