Zum Hauptinhalt springen
POST
/
contacts
/
v1
/
contact
/
email
/
{email}
/
profile
Update an existing contact by email
curl --request POST \
  --url https://api.hubapi.com/contacts/v1/contact/email/{email}/profile \
  --header 'Content-Type: application/json' \
  --data '
{
  "properties": [
    {
      "property": "<string>",
      "value": "<string>"
    }
  ]
}
'
{
  "properties": [
    {
      "property": "firstname",
      "value": "Updated"
    },
    {
      "property": "lastname",
      "value": "Record"
    },
    {
      "property": "website",
      "value": ""
    },
    {
      "property": "lifecyclestage",
      "value": "customer"
    }
  ]
}

Pfadparameter

email
string
erforderlich

The email address of the record that you want to update.

Body

application/json
properties
object[]
erforderlich

List of contact properties to update.

Antwort

200 - application/json

Successful response - This endpoint allows you to update an existing contact in HubSpot, identified by email

The response is of type object.

Last modified on April 9, 2026