Partial record updates via the Ingest API - update specific fields without sending complete records.
Example:
{
"id": "product-123",
"stock": 42,
"price": 29.99
}
// Only these fields update, everything else unchanged
Capabilities:
Nested fields - Update deep object properties
Array operations - Append, remove, or replace items
Field-by-field errors - One invalid field doesn't reject the entire update
Perfect for:
Stock level updates
Price changes
Near-real-time webhooks with minimal data transfer
Existing full-record ingestion unchanged - adopt patching incrementally.