This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Creates multiple inventory items.
You can only call this method when authenticated as a Wix app or Wix user identity.
Inventory items to create.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Decrements quantities of multiple inventory items.
Notes::
trackQuantity
must be true
to allow for decrementing the quantity.restrictInventory: true
and the decrementData.decrementBy
amount is greater than the current quantity in stock, the request will fail with an INSUFFICIENT_INVENTORY
error.restrictInventory: false
to allow for negative quantities.preorderRequest: true
and the item is available for preorder, the item's preorderCounter
will increase and the item's quantity will stay the same.You can only call this method when authenticated as a Wix app or Wix user identity.
Inventory item IDs and decrement data.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Decrements quantities of multiple inventory items by variant and location.
Notes::
trackQuantity
must be true
to allow for decrementing the quantity.restrictInventory: true
and the decrementData.decrementBy
amount is greater than the current quantity in stock, the request will fail with an INSUFFICIENT_INVENTORY
error.restrictInventory: false
to allow for negative quantities.preorderRequest: true
and the item is available for preorder, the item's preorderCounter
will increase and the item's quantity will stay the same.You can only call this method when authenticated as a Wix app or Wix user identity.
Variant and location IDs, as well as decrement data.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Deletes multiple inventory items.
You can only call this method when authenticated as a Wix app or Wix user identity.
IDs of inventory items to delete.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Increments quantities of multiple inventory items.
Note: trackQuantity
must be true
to allow for incrementing the quantity.
You can only call this method when authenticated as a Wix app or Wix user identity.
Inventory item IDs and increment data.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Increments quantities of multiple inventory items by variant and location.
Note: trackQuantity
must be true
to allow for incrementing the quantity.
You can only call this method when authenticated as a Wix app or Wix user identity.
Variant and location IDs, as well as increment data.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Updates multiple inventory items.
Each time an inventory item is updated, revision
increments by 1.
The current revision
must be passed when updating an inventory item.
This ensures you're working with the latest inventory item and prevents unintended overwrites.
You can only call this method when authenticated as a Wix app or Wix user identity.
Inventory items to update.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Updates multiple inventory items, given the provided filter.
Each time an inventory item is updated, revision
increments by 1.
The current revision
must be passed when updating an inventory item.
This ensures you're working with the latest inventory item and prevents unintended overwrites.
You can only call this method when authenticated as a Wix app or Wix user identity.
Filter object.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Creates an inventory item.
The combination of variantId
and locationId
is unique.
You can only call this method when authenticated as a Wix app or Wix user identity.
Inventory item to create.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Deletes an inventory item.
You can only call this method when authenticated as a Wix app or Wix user identity.
Inventory item ID.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Retrieves an inventory item.
Inventory item ID.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Retrieves a list of up to 1,000 inventory items, given the provided filtering, sorting, and cursor paging.
For field support for filters and sorting, see Inventory Items: Supported Filters and Sorting.
To learn about working with Query endpoints, see API Query Language, and Sorting and Paging.
PROPERTY | SUPPORTED FILTERS & SORTING |
---|---|
inStock | eq() ,ne() ,exists() ,in() ,hasSome() ,ascending() ,descending() |
quantity | eq() ,ne() ,exists() ,in() ,hasSome() ,lt() ,le() ,gt() ,ge() ,ascending() ,descending() |
_id | eq() ,ne() ,exists() ,in() ,hasSome() ,startsWith() |
_createdDate | eq() ,ne() ,exists() ,in() ,hasSome() ,lt() ,le() ,gt() ,ge() ,ascending() ,descending() |
_updatedDate | eq() ,ne() ,exists() ,in() ,hasSome() ,lt() ,le() ,gt() ,ge() ,ascending() ,descending() |
variantId | eq() ,ne() ,exists() ,in() ,hasSome() ,startsWith() |
locationId | eq() ,ne() ,exists() ,in() ,hasSome() ,startsWith() |
productId | eq() ,ne() ,exists() ,in() ,hasSome() ,startsWith() |
preorderInfo.enabled | eq() ,ne() ,exists() ,in() ,hasSome() ,ascending() ,descending() |
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Retrieves a list of inventory items, given the provided filtering, sorting, and cursor paging.
Search Inventory Items runs with these defaults, which you can override:
createdDate
is sorted in DESC
ordercursorPaging.limit
is 100
For field support for filters and sorting, see Inventory Items: Supported Filters and Sorting.
To learn about working with Search endpoints, see API Query Language, and Sorting and Paging.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Updates an inventory item.
Each time the inventory item is updated, revision
increments by 1.
The current revision
must be passed when updating the inventory item.
This ensures you're working with the latest inventory item and prevents unintended overwrites.
You can only call this method when authenticated as a Wix app or Wix user identity.
Inventory item ID.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when an inventory item is created.
handler(event: InventoryItemCreatedEnvelope): void | Promise<void>
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when an inventory item is deleted.
handler(event: InventoryItemDeletedEnvelope): void | Promise<void>
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when an inventory item's stock is updated.
handler(event: InventoryItemStockStatusUpdatedEnvelope): void | Promise<void>
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when an inventory item is updated.
handler(event: InventoryItemUpdatedEnvelope): void | Promise<void>
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Triggered when an inventory item is updated.
handler(event: InventoryItemUpdatedWithReasonEnvelope): void | Promise<void>
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Adds a sort to a query, sorting by the specified properties in ascending order.
The ascending()
function refines a InventoryItemsQueryBuilder
to sort by the value of propertyName
in ascending order.
You can specify multiple properties for sorting in ascending order by passing each property name as an additional argument. ascending()
sorts the results in the order the properties are passed.
You can sort the following types:
'abc'
comes after 'XYZ'
.
If a property contains a number stored as a string (for example, '0'
), that value is sorted alphabetically and not numerically. If a property doesn't have a value, that value is ranked lowest.
Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Adds a sort to a query, sorting by the specified properties in descending order.
The descending()
function refines a InventoryItemsQueryBuilder
to sort by the value of propertyName
in descending order.
You can specify multiple properties for sorting in descending order by passing each property name as an additional argument. descending()
sorts the results in the order the properties are passed.
You can sort the following types:
'abc'
comes after 'XYZ'
.
If a property contains a number stored as a string (for example, '0'
), that value is sorted alphabetically and not numerically. If a property doesn't have a value, that value is ranked lowest.
Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Refines a query to match items where the specified property equals the specified value.
The eq()
function refines a InventoryItemsQueryBuilder
to match only items where the value of the specified propertyName
equals the specified value
.
eq()
matches only values of the same type. For example, 0
stored as a number doesn't match '0'
stored as a string.
Matching strings with eq()
is case-sensitive, so 'text'
isn't equal to 'Text'
.
Property whose value is compared with value
.
Value to compare against.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Refines a query to match items where the specified property contains a value.
The exists()
function refines a InventoryItemsQueryBuilder
to only match items where the value of the specified propertyName
doesn't equal null or undefined.
exists()
checks for either existence or non-existence based on the boolen parameter. Note that exists()
does match items where the value of the specified propertyName
is an empty string or an invalid value. exists()
is only useful for properties which don't contain default values and therefore their values may be unassigned.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Returns the query results.
The find()
function returns a Promise that resolves to the query results and metadata.
The Promise is rejected if find()
is called with insufficient permissions or if any of the previous functions used to refine the query are invalid.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Refines a query to match items where the specified property is greater than or equal to the specified value.
The ge()
function refines a InventoryItemsQueryBuilder
to match only items where the value of the specified propertyName
is greater than or equal to the specified value
.
ge()
matches only values of the same type. For example, 0
stored as a number doesn't match '0'
stored as a string.
If a property contains a number stored as a string (for example, '0'
), that value is compared alphabetically and not numerically. If a property doesn't have a value, that value is ranked lowest.
The following types of properties can be compared:
'abc'
is greater than 'ABC'
.
Property whose value is compared with value
.
Value to compare against.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Refines a query to match items where the specified property is greater than the specified value.
The gt()
function refines a InventoryItemsQueryBuilder
to match only items where the value of the specified propertyName
is greater than the specified value
.
gt()
matches only values of the same type. For example, 0
stored as a number doesn't match '0'
stored as a string.
If a property contains a number stored as a string (for example, '0'
), that value is compared alphabetically and not numerically. If a property doesn't have a value, that value is ranked lowest.
The following types of properties can be compared:
'abc'
is greater than 'ABC'
.
Property whose value is compared with value
.
Value to compare against.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Refines a query to match items whose specified property contains any of the specified values.
The hasSome()
function refines a InventoryItemsQueryBuilder
to match only items where the value of the specified propertyName
equals any of the specified values
.
Matching strings with hasSome()
is case-sensitive, so 'text'
isn't equal to 'Text'
.
If the specified property is an array, hasSome()
matches if any of that array's elements equal any of the specified values.
Property whose value is compared with values
.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Refines a query to only match items where the specified property conatins any of the values in the provided array of values.
The in()
function refines a InventoryItemsQueryBuilder
to match only items where the specified propertyName
is equal to any of the values in the provided array.
Matching strings with in()
is case-sensitive, so 'text'
isn't equal to 'Text'
.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Refines a query to match items where the specified property is less than or equal to the specified value.
The le()
function refines a InventoryItemsQueryBuilder
to match only items where the value of the specified propertyName
is less than or equal to the specified value
.
le()
matches only values of the same type. For example, 0
stored as a number doesn't match '0'
stored as a string.
If a property contains a number stored as a string (for example, '0'
), that value is compared alphabetically and not numerically. If a property doesn't have a value, that value is ranked lowest.
The following types of properties can be compared:
'ABC'
is less than 'abc'
.
Property whose value is compared with value
.
Value to compare against.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Limits the number of items the query returns.
The limit()
function defines the number of results a query returns in each page. Only one page of results is retrieved at a time.
You can use the next()
and prev()
functions to navigate the pages of a query result.
Number of items to return, which is also the pageSize
of the results object.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Refines a query to match items where the specified property is less than the specified value.
The le()
function refines a InventoryItemsQueryBuilder
to match only items where the value of the specified propertyName
is less than the specified value
.
le()
matches only values of the same type. For example, 0
stored as a number doesn't match '0'
stored as a string.
If a property contains a number stored as a string (for example, '0'
), that value is compared alphabetically and not numerically. If a property doesn't have a value, that value is ranked lowest.
The following types of properties can be compared:
'ABC'
is less than 'abc'
.
Property whose value is compared with value
.
Value to compare against.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Refines a query to match items where the specified property doesn't equal the specified value.
The ne()
function refines a InventoryItemsQueryBuilder
to match only items where the value of the specified propertyName
doesn't equal the specified value
.
ne()
matches only values of the same type. For example, 0
stored as a number doesn't match '0'
stored as a string.
Matching strings with ne()
is case-sensitive, so 'text'
isn't equal to 'Text'
.
Property whose value is compared with value
.
Value to compare against.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Refines a query that skips to a specific record.
The skipTo()
function refines a InventoryItemsQueryBuilder
to return items that appear before or after the item pointed to by the provided cursor. Get the relevant cursor for a specific item from the cursors
object in previous call's response. Then you can skip to cursors.prev
to return items before the cursor, or cursors.next
to return items after the cursor.
When using skipTo()
, the filters and the sorting order of the original query can't be changed. Only the limit()
property of the query can be changed.
A pointer to specific record
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Refines a query to match items where the specified property starts with the specified value.
The startsWith()
function refines a InventoryItemsQueryBuilder
to match only items where the value of the specified propertyName
starts with the specified string
.
Matching with startsWith()
is case-sensitive, so 'TEXT'
doesn't start with 'text'
.
You can only use startsWith()
with a property whose value is a string.
Property whose value is compared with string
.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.