Skip to main content
PATCH
/
v1
/
contact
/
{contactId}
curl --request PATCH \
  --url https://openapi.enginy.ai/v1/contact/{contactId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "firstName": "Ada",
  "lastName": "Lovelace",
  "jobTitle": "CTO",
  "linkedInProfileUrl": "https://www.linkedin.com/in/adalovelace",
  "contactCountry": "United States"
}
'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "id": 123,
    "firstName": "<string>",
    "lastName": "<string>",
    "jobTitle": "<string>",
    "linkedInProfileUrl": "<string>",
    "professionalEmail": "<string>",
    "personalEmails": "<string>",
    "mobilePhone": "<string>",
    "phones": "<string>",
    "imageUrl": "<string>",
    "companyId": 123,
    "company": {
      "id": 123,
      "name": "<string>",
      "domain": "<string>",
      "companyLinkedInUrl": "<string>"
    },
    "emailVerificationStatus": "<string>",
    "contactCountry": "<string>",
    "linkedInHeadline": "<string>",
    "numberOfConnections": 123,
    "contactCRMId": "<string>",
    "leadCRMId": "<string>",
    "isInCRM": true,
    "createdAt": "2023-12-25",
    "updatedAt": "2023-12-25",
    "smartFieldExplanations": {}
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

contactId
string
required

The contact ID

Body

application/json

Fields to update on the contact. Supports standard and custom/AI fields by name.

{key}
any

Response

Contact updated successfully

status
enum<string>
required
Available options:
success
message
string
required
data
object
required