I’m trying to export data from hubspot using the search API. I noticed every time i do a search operation, a new blank record is added. Is this an error from the API? am i mising something from the api docs?
@CSarmiento0 wrote:
I’m trying to export data from hubspot using the search API. I noticed every time i do a search operation, a new blank record is added. Is this an error from the API? am i mising something from the api docs?
It’s important to note that the Search API is designed to retrieve data, not to create new records. The appearance of blank records could indicate that another part of your integration is unintentionally triggering a create or update operation. You should carefully review your code to ensure that only the search endpoint is being called, without invoking any other API actions that could be causing the creation of new records. Additionally, double-check your API request and parameters to ensure that they are correctly aligned with the HubSpot API documentation to prevent any unintended behavior.