About the Data Items API

Note for app developers: Wix Data APIs require the site's code editor to be enabled. If you are building a Wix app, add a data collections extension to automatically enable the code editor and create data collections when your app is installed on a site.

The Data Items API allows you to access and manage items in a Wix site's data collections.

With the Data Items API, you can:

  • Create and manage data items in a site's collections.
  • Retrieve data items from a collection individually or with filtering and sorting queries.
  • Create and manage reference fields.
  • Update or remove many items asynchronously by filter.
  • Perform aggregations and calculations on data in collections.
  • Run advanced aggregation pipelines for complex data transformations.
  • Truncate a data collection, removing all its contents.

The Data Items API only works with existing collections. To create and manage data collections, use the Data Collections API.

Before you begin

It's important to note the following points before starting to code:

  • The maximum size of an item you can save to a collection is 500 kb.
  • We don't recommend updating a data item more than once per second.
  • When using data retrieval endpoints such as Query Data Items or Get Data Item following an update to a collection's data, the data retrieved may not yet contain the most recent changes. See Wix Data and Eventual Consistency for more information and instructions for overriding this.
  • When querying Wix app collections, check which fields can be filtered in the relevant collection field article.
  • Updating a data item replaces the existing item entirely. If the existing item had fields with values and those fields aren't included in the updated item, the values in those properties are lost.
  • Aggregations can't be performed on Wix app collections.
  • After connecting external database collections to a Wix site using the External Database Connections API, you can use the Data Items API to manage and retrieve data from those collections as if they were Wix Data collections.

Choose the right write method

Choose the write method that matches the change you want to make:

  • Call Save Data Item for rerunnable imports or sync jobs that should create a new item when it doesn't exist and update it when it does.
  • Call Patch Data Item or Bulk Patch Data Items when you want to change only specific fields, keep the rest of the payload unchanged, or apply arithmetic actions such as incrementing a numeric field.
  • Call Update Data Item or Bulk Update Data Items only when you intend to replace the existing payload with the values you send.

Collection IDs and field IDs

You need collection IDs and field IDs when working with the Data Items API to interact with a site's data. Collection IDs identify which specific collection your API calls should target. Field IDs specify which fields to include in queries or which fields to update when modifying collection items.

A collection ID is the user-defined identifier set when the collection is created, not a GUID. For example, a Wix user may set a collection ID to EvalCustomers or EvalSystemLogs. Item IDs (dataItem.id) are auto-assigned if you don't pass one, though you can also supply your own stable string when inserting an item.

Use cases

Did this help?