curl --request PATCH \
--url https://app.nex.ai/api/developers/v1/lists/{id}/records/{record_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"attributes": {
"status": "qualified",
"score": 92,
"notes": "Had a great demo call, ready to move forward",
"source": "referral"
}
}
'{
"id": "32417546405832962",
"object_id": "32417546405832950",
"type": "person",
"workspace_id": "32417546405832945",
"created_at": "2024-01-20T16:45:00Z",
"updated_at": "2024-01-21T10:30:00Z",
"attributes": {
"name": {
"first_name": "Sarah",
"last_name": "Chen"
},
"email_addresses": [
"sarah@newstartup.com"
],
"job_title": "VP Engineering",
"status": "qualified",
"score": 92,
"notes": "Had a great demo call, ready to move forward",
"source": "referral"
}
}Updates list-specific attributes for a record that belongs to a list
curl --request PATCH \
--url https://app.nex.ai/api/developers/v1/lists/{id}/records/{record_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"attributes": {
"status": "qualified",
"score": 92,
"notes": "Had a great demo call, ready to move forward",
"source": "referral"
}
}
'{
"id": "32417546405832962",
"object_id": "32417546405832950",
"type": "person",
"workspace_id": "32417546405832945",
"created_at": "2024-01-20T16:45:00Z",
"updated_at": "2024-01-21T10:30:00Z",
"attributes": {
"name": {
"first_name": "Sarah",
"last_name": "Chen"
},
"email_addresses": [
"sarah@newstartup.com"
],
"job_title": "VP Engineering",
"status": "qualified",
"score": 92,
"notes": "Had a great demo call, ready to move forward",
"source": "referral"
}
}API key for authentication (format: "Bearer YOUR_API_KEY")
List record update request