message: 'Property values were not valid: [{"isValid":false,"message":"Endereço de e-mail tb.tb@yahoo.comtttt inválido","error":"INVALID_EMAIL","name":"email"}]'
I know that this domains has a problem, but will this also happen with other valid domains such as @test.design, @test.vegas and others that don't end with two or three digits??
When I apply a regex on these domains, including the invalid email in the message above, I always get a positive response, so I don't know what the evaluation criteria is implemented by hubspot.
HubSpot validates email addresses used for any process that would create or update a contact record. This includes using thecontacts endpointsto create or update a contact as well asform submissionsorevents.
These processes don't check the email address itself for validity (like anembedded form would), but rather its format. In addition to being valid according toRFC 2822, HubSpot places the following restrictions on email addresses:
Local parts of the address cannot include quotation marks. (e.g. "Test Email"@hubspot.com isn't valid)
Hopefully this helps in some way. For what it's worth I was able to successfully create a contact using "POST /crm/v3/objects/contact" with email "xyz@test.design" and "abc.test.vegas". Request information below:
HubSpot validates email addresses used for any process that would create or update a contact record. This includes using thecontacts endpointsto create or update a contact as well asform submissionsorevents.
These processes don't check the email address itself for validity (like anembedded form would), but rather its format. In addition to being valid according toRFC 2822, HubSpot places the following restrictions on email addresses:
Local parts of the address cannot include quotation marks. (e.g. "Test Email"@hubspot.com isn't valid)
Hopefully this helps in some way. For what it's worth I was able to successfully create a contact using "POST /crm/v3/objects/contact" with email "xyz@test.design" and "abc.test.vegas". Request information below: