Authorizations
Enter your API key as: Bearer your_api_key_here
Path Parameters
Person ID
Body
application/json
Response
Person updated
The response is of type object
.
curl --request PATCH \
--url https://api.stardex.ai/v1/persons/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"linkedin_url": "<string>",
"emails": [
{
"contact_data_type": "<string>",
"value": "<string>"
}
],
"phone_numbers": [
{
"contact_data_type": "<string>",
"value": "<string>"
}
],
"name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"current_job_title": "<string>",
"company_name": "<string>",
"linkedin_location": "<string>",
"linkedin_headline": "<string>",
"address": "<string>",
"enrich_record": true,
"work_email": "<string>",
"personal_email": "<string>",
"mobile_phone": "<string>",
"work_phone": "<string>",
"job_id": "<string>"
}'
{
"success": true,
"data": {
"message": "Person updated successfully"
}
}
Update person information including contact details and job information
curl --request PATCH \
--url https://api.stardex.ai/v1/persons/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"linkedin_url": "<string>",
"emails": [
{
"contact_data_type": "<string>",
"value": "<string>"
}
],
"phone_numbers": [
{
"contact_data_type": "<string>",
"value": "<string>"
}
],
"name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"current_job_title": "<string>",
"company_name": "<string>",
"linkedin_location": "<string>",
"linkedin_headline": "<string>",
"address": "<string>",
"enrich_record": true,
"work_email": "<string>",
"personal_email": "<string>",
"mobile_phone": "<string>",
"work_phone": "<string>",
"job_id": "<string>"
}'
{
"success": true,
"data": {
"message": "Person updated successfully"
}
}
Enter your API key as: Bearer your_api_key_here
Person ID
Person updated
The response is of type object
.
Was this page helpful?