Question: Fill in the blank: The portion of an HTTP request that contains the returned data and information is the ___.
- request
- method
- header
- body
Explanation
The body of an HTTP request contains the actual data and information being sent or returned. It carries the payload that the server processes or responds with, such as JSON, XML, or form data. The body is separate from the header, which contains metadata about the request or response. Properly structuring the body is essential for API calls and integrations to function correctly.
Why the other options are incorrect
Request refers to the entire HTTP message, not just the data portion.
Method specifies the type of action (e.g., GET, POST) and does not contain the data itself.
Header holds metadata about the request or response, not the returned data.
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.
