Skip to main content
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"
  }
}
'
{
  "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": [
      "[email protected]"
    ],
    "job_title": "VP Engineering",
    "status": "qualified",
    "score": 92,
    "notes": "Had a great demo call, ready to move forward",
    "source": "referral"
  }
}

Authorizations

Authorization
string
header
required

API key for authentication (format: "Bearer YOUR_API_KEY")

Path Parameters

id
integer
required

List ID

record_id
integer
required

Record ID

Body

application/json

List record update request

attributes
object

Attributes to update

Response

Updated list record

attributes
object
created_at
string
id
string
object_id
string
type
string
updated_at
string
workspace_id
string