Zum Hauptinhalt springen
POST
/
contacts
/
v1
/
contact
/
createOrUpdate
/
email
/
{contact_email}
Create or update a contact by email
curl --request POST \
  --url https://api.hubapi.com/contacts/v1/contact/createOrUpdate/email/{contact_email} \
  --header 'Content-Type: application/json' \
  --data '
{
  "properties": [
    {
      "property": "<string>",
      "value": "<string>"
    }
  ]
}
'
{
  "vid": 3234574,
  "isNew": false
}

Pfadparameter

contact_email
string
erforderlich

The email address of the contact to create or update.

Body

application/json
properties
object[]
erforderlich

List of contact properties for the new contact.

Antwort

200 - application/json

Successful response - The create or update a contact endpoint is used to create a new HubSpot contact or update an existing one

The response is of type object.

Last modified on April 9, 2026