Bulk Operations
Bulk endpoint pattern
PATCH /records/bulk # Batch update records
DELETE /records/bulk # Batch delete records
POST /contributions/bulk # Batch ingest contributionsRequest format
curl -X PATCH "$REKORD_BASE_URL/records/bulk" \
-H "Authorization: Bearer $REKORD_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"items": [
{
"recordId": "01957c3a-...",
"data": { "annualIncome": 55000 }
},
{
"recordId": "01957c3a-...",
"data": { "annualIncome": 62000 }
}
]
}'Partial success
Limits
Limit
Value
Rate limiting
Last updated

