Update a record within 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"
}
}
'import requests
url = "https://app.nex.ai/api/developers/v1/lists/{id}/records/{record_id}"
payload = { "attributes": {
"status": "qualified",
"score": 92,
"notes": "Had a great demo call, ready to move forward",
"source": "referral"
} }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
attributes: {
status: 'qualified',
score: 92,
notes: 'Had a great demo call, ready to move forward',
source: 'referral'
}
})
};
fetch('https://app.nex.ai/api/developers/v1/lists/{id}/records/{record_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.nex.ai/api/developers/v1/lists/{id}/records/{record_id}"
payload := strings.NewReader("{\n \"attributes\": {\n \"status\": \"qualified\",\n \"score\": 92,\n \"notes\": \"Had a great demo call, ready to move forward\",\n \"source\": \"referral\"\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "<api-key>")
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))
}{
"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"
}
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}Lists
Update a record within a list
Updates list-specific attributes for a record that belongs to a list
PATCH
/
v1
/
lists
/
{id}
/
records
/
{record_id}
Update a record within 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"
}
}
'import requests
url = "https://app.nex.ai/api/developers/v1/lists/{id}/records/{record_id}"
payload = { "attributes": {
"status": "qualified",
"score": 92,
"notes": "Had a great demo call, ready to move forward",
"source": "referral"
} }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
attributes: {
status: 'qualified',
score: 92,
notes: 'Had a great demo call, ready to move forward',
source: 'referral'
}
})
};
fetch('https://app.nex.ai/api/developers/v1/lists/{id}/records/{record_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.nex.ai/api/developers/v1/lists/{id}/records/{record_id}"
payload := strings.NewReader("{\n \"attributes\": {\n \"status\": \"qualified\",\n \"score\": 92,\n \"notes\": \"Had a great demo call, ready to move forward\",\n \"source\": \"referral\"\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "<api-key>")
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))
}{
"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"
}
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}{
"code": 123,
"message": "<string>"
}Authorizations
API key for authentication (format: "Bearer YOUR_API_KEY")
Body
application/json
List record update request
Last modified on September 15, 2025
⌘I