Skip to main content
PATCH
https://ingest-{integration-id}.frontic.com
/
{feed-id}
/
upsert
{
  "id": "product-123",
  "price": 24.99,
  "stock": 75
}
{
  "correlation-id": "33d9f7e8-3b73-5f29-92b6-44d318ee078e"
}
Incrementally update an existing record. Only the fields you specify will be modified. Objects and scalar values are merged; numeric arrays are replaced entirely.

Path Parameters

integration-id
string
required
Your integration identifier. Found in the Frontic dashboard under integration settings.
feed-id
string
required
The unique identifier for your data feed.

Request Body

Send a single record object or an array of record objects for bulk updates.
id
string
required
The source ID of the record to update.
...fields
any
Fields to update. Only specified fields will be modified; other fields remain unchanged.

Response

correlation-id
string
required
Unique identifier to track this data change.
{
  "id": "product-123",
  "price": 24.99,
  "stock": 75
}
{
  "correlation-id": "33d9f7e8-3b73-5f29-92b6-44d318ee078e"
}