Skip to main content

Changelog

Developer Changelog

We regularly update our API and provide detailed notes on each release. We first release to staging, then to production about a week later. Learn more about our release process.

: Staging

: Production

✨ New

Catalog
Capture variant dimensions

Added the following new size fields to the productVariant model: length, width, height, size_units.

Learn more ->

🪲 Fixed

Inventory

Fixed an issue where STOCK_UPDATED events were not triggered during certain stock update scenarios.

: Staging

: Production

✨ New

Catalog
Filtering by attributes with AND operators

We've made filtering by attributes more powerful by introducing support for AND operators.

This allows users to build detailed filters, improving the accuracy of their product or productVariant filtering, and enhancing their browsing experience.

To facilitate this this, the AttributeInput filter input has been extended with two fields:

  • condition: How to combine the specified attribute values, using either AND (default) or OR operators.
  • connector: How to link multiple filter clauses, connecting the current filter clause to the previous ones with either AND (default) or OR operators.
query {
products(
first: 100
filter: {
attributes: [
{
slug: "color",
values: [
"purple",
"violet",
"red"
],
condition: OR
}
{
slug: "brand",
values: ["acme"],
connector: AND
}
]
features: {
operations: {
name: "Season"
values: ["summer", "spring"]
condition: OR
}
connector: AND
}
}
) {
totalCount
edges {
node {
id
name
description
variants {
name
id
}
}
}
}
}
Show more ↓
Orders
Automatic invoice generation

You can now configure the Invoicing plugin to generate invoices automatically once payment is received for an order.

Learn more ->

Orders
Secondary order lines

Added the NauticalSecondaryOrderLine object, which represents a sub-order-line for grouped products.

Inventory
Allocate inventory configuration

Added more control over inventory allocation and stock validation handling.

The following new boolean fields are added to the MarketplaceConfigurationInput, for global settings on how your marketplace behaves:

  • enableStockAllocationForQuotes: When true (default), allocates inventory when a quote order is created.
  • enableStockAllocationForOffers: When true (default), allocates inventory when an offer order is created.
  • enableStockAllocationForDrafts: When true (default), allocates inventory when a draft order is created.
  • validate_stock_on_order_payment_creation: When true, validates stock quantity to fulfill the order when a payment is created. Defaults to false.
Security
Manage fulfillment permission

Added a new MANAGE_FULFILLMENT permission to the PermissionEnum. Users with this permission can manage order fulfillments, including reading, creating, updating, and cancelling, along with handling tracking information and shipping labels.

Without this permission, users are limited to reading fulfillment information for orders they have access to, but cannot perform any other fulfillment actions.

💎 Changed

Integrations
New address fields added to Typeform payload

The postal_code and phone_number fields have been added to the Typeform payload for seller onboarding.

🪲 Fixed

Integrations

Fixed an issue where product images imported from Shopify were not being rendered properly.

Catalog

Fixed an issue with applying an attribute filter to the productVariants query, where duplicate results could be returned.

Security

Fixed an issue with the pluginUpdate mutation, where a seller user with manage plugins permission could update any plugin. Now seller admins can only change plugin configurations owned by their seller.

: Staging

: Production

✨ New

Orders
Capture the user who completed a fulfillment

Added the user field to the fulfillment model, which can be queried to view which user performed a fulfillment.

Security
Manage inventory permission

Added the MANAGE_INVENTORY permission, providing more control over which staff members can manage inventory-related fields (sku, track_inventory, stocks).

🪲 Fixed

Catalog

Fixed an issue where the products query was not returning complete information about grouped products in certain circumstances.

Integrations

Fixed an issue where mapping the Tax ID (identification) field for seller onboarding with Typeform could cause the SELLER_CREATE webhook jobs to become stuck.

💎 Changed

Documents
Enhanced invoice header with marketplace information

When the marketplace logo is unavailable, the upper left header of customer and proforma invoices now displays the marketplace name and contact information.

✨ New

Inventory
Webhooks for stock events

New webhooks have been added for the STOCK_CREATED and STOCK_UPDATED events.

Toggle the following tabs to see example webhook payloads:

[
{
"id": "U3RvY2s6MzU5",
"new": {
"quantity": 110,
"quantity_allocated": 0,
"quantity_available": 110,
},
"old": {
"quantity": 10,
"quantity_allocated": 0,
"quantity_available": 10,
},
"type": "Stock",
"warehouse_id": "V2FyZWhvd...",
"warehouse_name": "Americas",
"product_variant_id": "UHJvZHVj..."
}
]
Show more ↓

💎 Changed

Documents
Secure document URLs

Document handling has been enhanced for greater security. Documents are now stored in a private container, accessible through secure URLs with time-limited access tokens.

By default, these URLs are valid for one day but can be adjusted upon request. When sharing URLs with customers, they will have a limited timeframe to access them. The document URL stored in the API and Dashboard will always return the most recent signed URL.

This change applies to digital_contents on products, documents attached to objects such as customers or products, export_files, import_files, and invoices. Previously added documents remain compatible with this change.

Orders
Updated at timestamp for fulfillments

The updated datetime field has been added to the fulfillment object model and related webhooks.

🚫 Deprecated

Integrations
ShippyPro

ShippyPro is no longer supported and it has been removed from the list of natively supported applications.

🪲 Fixed

Documents

Fixed an issue where the "Price" column on customer and proforma invoices displayed the price including tax instead of the net price of the product.

Checkout

Fixed an issue that prevented customers from checking out when all products in the cart had taxes turned off.

Catalog

Fixed an issue where a seller admin was unable to assign an image to a product variant they owned if the marketplace operator had previously attempted to assign the same image.

Catalog

Fixed an issue where marketplace operators were unable to upload or assign images for a product or variant owned by a seller when strict product image handling was enabled.

💎 Changed

Accounts
Account register mutation enhancements

Extended the accountRegister mutation to support new input fields and adding default addresses when creating accounts.

The following fields have been added to the AccountRegisterInput:

  • firstName
  • lastName
  • defaultBillingAddress
  • defaultShippingAddress
Vendor Mgmt
Create seller with owner enhancements

Extended the sellerWithOwnerCreate mutation to accept metadata for the seller or the user being created as part of the mutation, through the metadata field.

Furthermore, the sellerWithOwnerCreate mutation can now be run with a custom app bearer authentication token.

🚫 Deprecated

Vendor mgmt
Create seller with owner status input

The DetailedSellerInput.status field, which is used in the sellerWithOwnerCreate mutation, has been deprecated.

Going forward, this field will be ignored. The seller will always be created in the PENDING state.

🪲 Fixed

Checkout

Fixed an issue where the API could return a 500 error and prevent checkout after receiving a 404 error from Stripe when trying to find a PaymentIntent.

✨ New

Inventory
Country code HTTP header

A new HTTP_COUNTRYCODE header is supported, which allows you to override the default IP-based customer location detection and specify the country directly.

💎 Changed

Checkout
Performance improvements

Performance has been improved for checkouts requiring currency conversion.

🪲 Fixed

Integrations

Fixed an issue where orders containing only untaxed items resulted in an Avalara error.

🪲 Fixed

Microsites

Fixed a permission issue with querying microsites with a JWT token associated with a buyer account.

note

Release notes for version 1.4.1 were skipped due to an internal deployment. Changes from version 1.4.1 are included in these notes.

💎 Changed

Inventory
Retrieve product warehouse stats

Added warehouseStats to the product query, which will return aggregated stock quantities for all of a product's variants.

query {
products(last: 15) {
edges {
node {
id
name
warehousesStats {
warehouseId
quantity
quantityAllocated
quantityAvailable
}
}
}
}
}

🪲 Fixed

Orders

Fixed a permission check issue with the retrieving the identification field through a seller query.

Catalog

Fixed an issue where you could not query products for a seller.

✨ New

Catalog
Unpublish variants from storefront

Added more control over the visibility of product variants in the storefront through the API. To accomplish this, a new isPublished field has been added to the variant object.

This field behaves similarly to the same field for products to control the visibility of each variant in your storefront. When the isPublished flag is set to true, the variant will be displayed to your customers. Conversely, setting the flag to false will hide the variant from the storefront.

mutation {
productVariantUpdate(
id: "UHJvZHVjdFZhcmlhbnQ6MzU0Mg=="
input: { isPublished: false }
) {
productVariant {
name
id
description
isPublished
product {
name
id
isPublished
}
}
}
}

The parent product's published status takes precedence over all variants' published status. In other words, if a product has its isPublished flag set to false, regardless of the isPublished value of its variants, all variants will remain hidden from the storefront until the product itself is published.

Catalog
Validation logic for product and variant deletion

Added validation logic to prevent the deletion of a product or variant if it is associated with an active order, including draft, quote, or offer orders. An order is considered active when it is not in the fulfilled, delivered, or cancelled state.

Payouts
Query a single payout

Added the vendorPayout query to return information about a single vendor payout.

{
vendorPayout(id: "VmVuZG9yUGF5b3V0OjY4") {
seller {
id
companyName
}
gross
taxes
net
shipping
commission
payoutAmount
currency
status
statusMessage
orders(first: 15) {
totalCount
edges {
node {
lines {
productName
}
}
}
}
}
}
Show more ↓
Integrations
Retrieve Avalara customer tax certificate

The customerTaxCertificates query can now return the download URL for an image of a customer's Avalara tax certificate.

query {
customerTaxCertificates(
id: "VXNlcjox"
)
{
documentExists
id
filename
downloadUrl
}
}

💎 Changed

Webhooks
Order fulfilled webhook updated with seller and warehouse data

The ORDER_FULFILLED webhook payload has been updated to return information about the associated seller and warehouse.

🪲 Fixed

Catalog

Fixed an issue where editing product descriptions could lead to errors with the DescriptionHTML field when paragraphs were not wrapped in a <p> tag.

Integrations

Fixed an issue with ShipStation integrations where orders could be blocked from being created or updated in certain circumstances.

Integrations

Fixed an issue with Avalara integrations where the tax_included value sent to Avalara was not respecting the marketplace global tax treatment setting.

Integrations

Fixed an issue where the taxRate for order lines could be slightly rounded, due to supporting a numeric value with only two decimal points of precision. Now, tax rates are returned with six decimal point precision.

✨ New

Catalog
Customizable product sorting by priority weight

This feature allows for personalized sorting of products according to their designated sort priority weight.

You can assign a value to each product using the newly introduced sortPriorityWeight field. You can then arrange the products in ascending or descending order, based on their priority weights, through the SORT_PRIORITY_WEIGHT sorting method.

This new sorting feature gives you more freedom to arrange your products the way you want in your storefront. For example, you can make popular or sponsored products appear first by assigning them higher priority weights.

{
products(
first: 25
sortBy: {
field: SORT_PRIORITY_WEIGHT,
direction: ASC
}
) {
edges {
node {
id
name
description
sortPriorityWeight
}
}
}
}

💎 Changed

Performance
Performance improvements to checkout

Significant performance improvements have been made to the checkout process, resulting in faster speeds, particularly for shopping carts with a large number of line items (25 or more).

🪲 Fixed

Security

Fixed a security vulnerability issue with the password reset flow, where the system would present an error if the email was incorrect or inactive.

Orders

Fixed an issue where changing the quantity of an order line in a draft order reduced the variant's price for the order.

Was this page helpful?