PATCH
/
v0
/
persons
/
{id}
curl --request PATCH \
  --url https://api.stardex.ai/v0/persons/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "emails": [
    {
      "contact_data_type": "work",
      "value": "john.doe@company.com"
    },
    {
      "contact_data_type": "personal",
      "value": "john@gmail.com"
    }
  ],
  "phones": [
    {
      "contact_data_type": "work",
      "value": "+1-555-0123"
    },
    {
      "contact_data_type": "mobile",
      "value": "+1-555-0124"
    }
  ],
  "current_job_title": "Senior Software Engineer",
  "linkedin_location": "San Francisco Bay Area",
  "linkedin_headline": "Building innovative solutions | Tech Lead at Company",
  "address": "123 Main St, San Francisco, CA 94105"
}'
{
  "error": null,
  "data": {
    "success": true,
    "message": "Person updated successfully"
  }
}

Authorizations

Authorization
string
header
required

Enter your API key as: Bearer your_api_key_here

Path Parameters

id
string
required

Person ID

Body

application/json

Response

200
application/json

Successfully updated person

The response is of type object.