Question: Which of the following is NOT a part of an HTTP request?
- Request URL
- Method
- Output
- Body
Explanation
Output is not part of an HTTP request because it refers to the response or result returned by the server. An HTTP request consists of the Request URL, which specifies the endpoint, the Method, which indicates the action (e.g., GET, POST), and the Body, which carries the payload. Properly constructing these components ensures successful communication with APIs.
Why the other options are incorrect
Request URL is required to define the target resource.
Method specifies the type of operation to perform.
Body contains the data sent with the request.
Source for verification
https://developers.hubspot.com/docs/api/overview
The answer(s) to the question is highlighted in the BOLD text above. You can also find more questions and answers related to the exams on the "Data Integrations Certification" page.
