Question: What HTTP method would you use if you wanted to read the tickets data from a HubSpot account?
- GATHER method
- PULL method
- GET method
- PATCH method
Explanation
The GET method is used when an integration needs to retrieve existing data from an API. In Amazon Ads workflows, read operations through Amazon Ads API use request methods that match the intended action. Reading ticket-like resource data does not require creating or updating a record. The request must still include valid authorization so the platform can confirm access to protected data. Using the correct HTTP method keeps the API call aligned with standard REST behavior.
Why the other options are incorrect
GATHER method This is not a standard HTTP method used for API data retrieval.
PULL method This is not the standard HTTP method for reading API resource data.
PATCH method This is used for updating existing resources, not reading data.
Source for verification
https://advertising.amazon.com/API/docs/en-us/reference/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 "Integrating With HubSpot I: Foundations" page.
