Add items to list
API Reference
Add items to list
Append one or more items to a specific data list by UUID with primaryValue, searchKeys, and optional itemData payload β POST /data-lists//items.
POST
Add items to list
Overview
Adds one or more items to a specific list identified by UUID. Requires permission to update the list.Endpoint
Authentication
Request Body
Each element:
primaryValue(string, required)searchKeys(string[], optional)category(string, optional)riskScore(number, optional)itemData(object, optional)metadata(object, optional)
batchSize(number, optional)ignoreDuplicates(boolean, optional)updateExisting(boolean, optional)
Notes
- For large uploads with richer per-row fields, prefer Bulk import items (
POST /data-lists/{id}/items/bulk). - Shortcut
POST /data-lists/{type}/itemsadds to the first active list of that type (oldest by default). Prefer list id when you have multiple lists per type.
Response
201 with counts (processed, errors, duplicates, etc.) on success.