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>",
"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>",
"do_not_contact": true,
"do_not_contact_reason": "<string>",
"custom_fields": [
{
"attribute_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"value": "<string>",
"add_values": [
"<string>"
],
"remove_values": [
"<string>"
],
"add_team_member_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"remove_team_member_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"clear_all": true
}
]
}
'import requests
url = "https://api.stardex.ai/v1/persons/{id}"
payload = {
"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>",
"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>",
"do_not_contact": True,
"do_not_contact_reason": "<string>",
"custom_fields": [
{
"attribute_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"value": "<string>",
"add_values": ["<string>"],
"remove_values": ["<string>"],
"add_team_member_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"remove_team_member_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"clear_all": True
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
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>',
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>',
do_not_contact: true,
do_not_contact_reason: '<string>',
custom_fields: [
{
attribute_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
value: '<string>',
add_values: ['<string>'],
remove_values: ['<string>'],
add_team_member_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
remove_team_member_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
clear_all: true
}
]
})
};
fetch('https://api.stardex.ai/v1/persons/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.stardex.ai/v1/persons/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'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>',
'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>',
'do_not_contact' => true,
'do_not_contact_reason' => '<string>',
'custom_fields' => [
[
'attribute_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'value' => '<string>',
'add_values' => [
'<string>'
],
'remove_values' => [
'<string>'
],
'add_team_member_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'remove_team_member_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'clear_all' => true
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.stardex.ai/v1/persons/{id}"
payload := strings.NewReader("{\n \"linkedin_url\": \"<string>\",\n \"emails\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"phone_numbers\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"current_job_title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"location\": \"<string>\",\n \"linkedin_headline\": \"<string>\",\n \"address\": \"<string>\",\n \"enrich_record\": true,\n \"work_email\": \"<string>\",\n \"personal_email\": \"<string>\",\n \"mobile_phone\": \"<string>\",\n \"work_phone\": \"<string>\",\n \"job_id\": \"<string>\",\n \"do_not_contact\": true,\n \"do_not_contact_reason\": \"<string>\",\n \"custom_fields\": [\n {\n \"attribute_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"value\": \"<string>\",\n \"add_values\": [\n \"<string>\"\n ],\n \"remove_values\": [\n \"<string>\"\n ],\n \"add_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"remove_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"clear_all\": true\n }\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.stardex.ai/v1/persons/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"linkedin_url\": \"<string>\",\n \"emails\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"phone_numbers\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"current_job_title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"location\": \"<string>\",\n \"linkedin_headline\": \"<string>\",\n \"address\": \"<string>\",\n \"enrich_record\": true,\n \"work_email\": \"<string>\",\n \"personal_email\": \"<string>\",\n \"mobile_phone\": \"<string>\",\n \"work_phone\": \"<string>\",\n \"job_id\": \"<string>\",\n \"do_not_contact\": true,\n \"do_not_contact_reason\": \"<string>\",\n \"custom_fields\": [\n {\n \"attribute_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"value\": \"<string>\",\n \"add_values\": [\n \"<string>\"\n ],\n \"remove_values\": [\n \"<string>\"\n ],\n \"add_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"remove_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"clear_all\": true\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/persons/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"linkedin_url\": \"<string>\",\n \"emails\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"phone_numbers\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"current_job_title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"location\": \"<string>\",\n \"linkedin_headline\": \"<string>\",\n \"address\": \"<string>\",\n \"enrich_record\": true,\n \"work_email\": \"<string>\",\n \"personal_email\": \"<string>\",\n \"mobile_phone\": \"<string>\",\n \"work_phone\": \"<string>\",\n \"job_id\": \"<string>\",\n \"do_not_contact\": true,\n \"do_not_contact_reason\": \"<string>\",\n \"custom_fields\": [\n {\n \"attribute_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"value\": \"<string>\",\n \"add_values\": [\n \"<string>\"\n ],\n \"remove_values\": [\n \"<string>\"\n ],\n \"add_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"remove_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"clear_all\": true\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"message": "Person updated successfully"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}Update person
Update an existing person’s information including contact details, job title, company, do-not-contact status, and custom field values. Only provided fields are updated; omitted fields remain unchanged.
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>",
"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>",
"do_not_contact": true,
"do_not_contact_reason": "<string>",
"custom_fields": [
{
"attribute_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"value": "<string>",
"add_values": [
"<string>"
],
"remove_values": [
"<string>"
],
"add_team_member_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"remove_team_member_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"clear_all": true
}
]
}
'import requests
url = "https://api.stardex.ai/v1/persons/{id}"
payload = {
"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>",
"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>",
"do_not_contact": True,
"do_not_contact_reason": "<string>",
"custom_fields": [
{
"attribute_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"value": "<string>",
"add_values": ["<string>"],
"remove_values": ["<string>"],
"add_team_member_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"remove_team_member_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"clear_all": True
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
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>',
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>',
do_not_contact: true,
do_not_contact_reason: '<string>',
custom_fields: [
{
attribute_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
value: '<string>',
add_values: ['<string>'],
remove_values: ['<string>'],
add_team_member_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
remove_team_member_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
clear_all: true
}
]
})
};
fetch('https://api.stardex.ai/v1/persons/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.stardex.ai/v1/persons/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'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>',
'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>',
'do_not_contact' => true,
'do_not_contact_reason' => '<string>',
'custom_fields' => [
[
'attribute_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'value' => '<string>',
'add_values' => [
'<string>'
],
'remove_values' => [
'<string>'
],
'add_team_member_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'remove_team_member_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'clear_all' => true
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.stardex.ai/v1/persons/{id}"
payload := strings.NewReader("{\n \"linkedin_url\": \"<string>\",\n \"emails\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"phone_numbers\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"current_job_title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"location\": \"<string>\",\n \"linkedin_headline\": \"<string>\",\n \"address\": \"<string>\",\n \"enrich_record\": true,\n \"work_email\": \"<string>\",\n \"personal_email\": \"<string>\",\n \"mobile_phone\": \"<string>\",\n \"work_phone\": \"<string>\",\n \"job_id\": \"<string>\",\n \"do_not_contact\": true,\n \"do_not_contact_reason\": \"<string>\",\n \"custom_fields\": [\n {\n \"attribute_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"value\": \"<string>\",\n \"add_values\": [\n \"<string>\"\n ],\n \"remove_values\": [\n \"<string>\"\n ],\n \"add_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"remove_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"clear_all\": true\n }\n ]\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.stardex.ai/v1/persons/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"linkedin_url\": \"<string>\",\n \"emails\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"phone_numbers\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"current_job_title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"location\": \"<string>\",\n \"linkedin_headline\": \"<string>\",\n \"address\": \"<string>\",\n \"enrich_record\": true,\n \"work_email\": \"<string>\",\n \"personal_email\": \"<string>\",\n \"mobile_phone\": \"<string>\",\n \"work_phone\": \"<string>\",\n \"job_id\": \"<string>\",\n \"do_not_contact\": true,\n \"do_not_contact_reason\": \"<string>\",\n \"custom_fields\": [\n {\n \"attribute_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"value\": \"<string>\",\n \"add_values\": [\n \"<string>\"\n ],\n \"remove_values\": [\n \"<string>\"\n ],\n \"add_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"remove_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"clear_all\": true\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/persons/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"linkedin_url\": \"<string>\",\n \"emails\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"phone_numbers\": [\n {\n \"contact_data_type\": \"<string>\",\n \"value\": \"<string>\"\n }\n ],\n \"name\": \"<string>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"current_job_title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"location\": \"<string>\",\n \"linkedin_headline\": \"<string>\",\n \"address\": \"<string>\",\n \"enrich_record\": true,\n \"work_email\": \"<string>\",\n \"personal_email\": \"<string>\",\n \"mobile_phone\": \"<string>\",\n \"work_phone\": \"<string>\",\n \"job_id\": \"<string>\",\n \"do_not_contact\": true,\n \"do_not_contact_reason\": \"<string>\",\n \"custom_fields\": [\n {\n \"attribute_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"value\": \"<string>\",\n \"add_values\": [\n \"<string>\"\n ],\n \"remove_values\": [\n \"<string>\"\n ],\n \"add_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"remove_team_member_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"clear_all\": true\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"message": "Person updated successfully"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}Authorizations
Authenticate with a Bearer token: API key, OAuth token, or session token.
Path Parameters
Person ID
Body
LinkedIn profile URL.
Replace all email addresses. Cannot be combined with work_email or personal_email.
Show child attributes
Show child attributes
Replace all phone numbers. Cannot be combined with work_phone or mobile_phone.
Show child attributes
Show child attributes
Full name.
First name.
Last name.
Current job title.
Current employer company name.
Location (e.g. city, region, or country).
LinkedIn headline text.
Physical/mailing address.
When true, triggers background enrichment via data providers.
Work email address.
Personal email address.
Mobile phone number.
Work phone number.
Job UUID to add this person to that job pipeline as a candidate (creates the candidacy). Get IDs from POST /v1/jobs/search.
Set to true to mark this person as do-not-contact, or false to clear the flag.
Free-text reason for the do-not-contact flag (e.g. "Requested removal from outreach"). Only meaningful when do_not_contact is true.
Custom field values to update. Each attribute_id should appear once. Get attribute definitions from GET /v1/custom-fields/persons. For select fields, pass the tag NAME (e.g. "Remote") or the tag option UUID returned in that definition.
Show child attributes
Show child attributes
Was this page helpful?