cURL
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" } }
Updates a person’s information including contact details and professional information.
Enter your API key as: Bearer your_api_key_here
Bearer your_api_key_here
Person ID
Successfully updated person
The response is of type object.
object
Was this page helpful?