Which TWO are components of a REST API request? (Choose two.)
Identifies the resource.
Why this answer
A REST API request is defined by the combination of a URI (Uniform Resource Identifier) and an HTTP method. The URI identifies the specific resource (e.g., /api/users/123) on the server, while the HTTP method (GET, POST, PUT, DELETE, etc.) specifies the desired action to be performed on that resource. Together, they form the fundamental components that the client sends to the server to initiate a request.
Exam trap
Cisco often tests the distinction between request components and response components, and the trap here is that candidates mistakenly include status codes or payloads as request components, when in fact status codes are only in responses and payloads are optional in requests.