I’m importing a bunch of contacts to hubspot using upsert from the contact batch api.
There are some garbage email addresses in my database. When the hubspot api encounters a bad email in the batch, it returns a 400 for a whole batch it seems.
Is there a way to get the hubspot api to just drop the contacts that fail email validation and just push the good ones through?
I’m thinking my only option is to parse the error response, drop the email from my original request, then resend the request.