Skip to main content
PATCH
/
contacts
/
{contact_id}
Update Contact
curl --request PATCH \
  --url https://api.truedy.ai/api/public/v1/contacts/{contact_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "folder_id": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "email": "<string>",
  "phone_number": "<string>",
  "company_name": "<string>",
  "industry": "<string>",
  "location": "<string>",
  "pin_code": "<string>",
  "keywords": [
    "<string>"
  ],
  "metadata": {}
}
'
{
  "data": {},
  "meta": {
    "request_id": "req_32e7531c-8",
    "timestamp": "2026-03-03T20:30:21.310278Z"
  }
}

Authorizations

Authorization
string
header
required

Your API key. Get it from the Truedy Dashboard. Send as: Authorization: Bearer <your_key>

Path Parameters

contact_id
string
required

Body

application/json
folder_id
string | null

Folder ID

first_name
string | null

First name

Maximum string length: 50
last_name
string | null

Last name

Maximum string length: 50
email
string | null

Email address

phone_number
string | null

Phone number in E.164 format

company_name
string | null

Company name

Maximum string length: 100
industry
string | null

Industry

Maximum string length: 100
location
string | null

Location

Maximum string length: 100
pin_code
string | null

Pin code

Maximum string length: 20
keywords
string[] | null

Keywords (array)

metadata
Metadata · object

Additional metadata

Response

Request completed successfully

Response body