APIs & Integrations

iamryanmoreno
Member

V3 Updated API for GET Single Contact Via Email

Hi I would like to ask if we have version 3 updated API for this kind of request?

 

https://legacydocs.hubspot.com/docs/methods/contacts/get_contact_by_email

 

It is retrieving single contact information using contact(email)

 

0 Upvotes
1 Reply 1
dennisedson
HubSpot Product Team
HubSpot Product Team

V3 Updated API for GET Single Contact Via Email

Hello @iamryanmoreno 

There is not an updated version that specific endpoint, but you could always used the search endpoint.

Request would look something like this

    {"properties": [ "email", "state" ],
    "filterGroups":[
      {
        "filters":[
          {
            "propertyName": "email",
            "operator": "EQ",
            "value": "test@test.com"
          }
        ]
      }
    ]
  }
0 Upvotes