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>"
    }
  ]
}'
"\nExample POST URL:\nhttps://api.hubapi.com/contacts/v1/contact/email/testingapis@hubspot.com/profile\n\nExample POST body: \n{\n  \"properties\": [\n    {\n      \"property\": \"firstname\",\n      \"value\": \"Updated\"\n    },\n    {\n      \"property\": \"lastname\",\n      \"value\": \"Record\"\n    },\n    {\n      \"property\": \"website\",\n      \"value\": \"http://updated.example.com\"\n    },\n    {\n      \"property\": \"lifecyclestage\",\n      \"value\": \"customer\"\n    }\n  ]\n}\n\nReturns a 204 No Content response on success."

Path Parameters

email
string
required

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

Body

application/json

Response

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.