Skip to main content
DELETE
/
v1
/
lists
/
{list_id}
/
items
Remove Items from List
curl --request DELETE \
  --url https://api.example.com/v1/lists/{list_id}/items \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    {}
  ],
  "id_type": "<string>"
}
'
{
  "data": {
    "removed": 15
  }
}
Remove specific property or person IDs from an existing list. Up to 10,000 IDs per request. IDs not in the list are silently ignored. FREE — no credits consumed.
list_id
string
required
The list ID to remove items from.
ids
array
required
Array of property or person IDs to remove (1-10,000 per request).
id_type
string
default:"internal_property_id"
Type of IDs: internal_property_id or internal_person_id.
{
  "data": {
    "removed": 15
  }
}