> Note:
> We're no longer publishing API release notes. Instead, you can find the latest updates on Shopify APIs in our [developer changelog](https://shopify.dev/changelog). You can filter updates by area. For example, you can filter API updates by the API name and version, such as GraphQL Admin API changes in version 2025-04.


<table>
  <tr>
    <th>Release date</th>
    <th>Date version is no longer supported</th>
  </tr>
  <tr>
    <td>October 1, 2019</td>
    <td>October 1, 2020</td>
  </tr>
</table>

The 2019-10 release continues to focus on improving performance by completing the transition to cursor-based pagination. You can now use cursor-based pagination across the remaining endpoints. With the GraphQL Admin API, you can now perform bulk operations to fetch large amounts of data in a single request, letting Shopify handle pagination for you.

This release also solidifies many features we showcased at Unite 2019. Private metafields and translations are available for general use with the GraphQL Admin API, and delivery profiles have received a few updates. We've also added support for 3D Secure transactions to the REST Admin API and Storefront API.

**What's new in 2019-10**

Below are some of the highlights of new features in version 2019-10 of Shopify's APIs:

* [Page-based pagination has been replaced](#rest-admin-api-changes) by cursor-based pagination across the remaining REST endpoints
* [Perform bulk operations](#graphql-admin-api-changes) by using the GraphQL Admin API
* [Manage translated content for resources](#graphql-admin-api-changes) by using the GraphQL Admin API
* [Store private data about Shopify resources in private metafields](#graphql-admin-api-changes) using the GraphQL Admin API
* Create checkouts that include 3D secure by using the [REST Admin API](#rest-admin-api-changes) or the [Storefront API](#storefront-api-changes)

## Breaking changes
These changes require special attention. If your app uses these API resources, and you don’t adjust your usage of the resources according to the following instructions, then your app might break when you update to this API version.


### Pagination
Page-based pagination has been removed on all remaining REST endpoints, and has been replaced with [cursor-based pagination](/docs/api/usage/pagination-rest).

To migrate, see our tutorial on [cursor-based pagination](/docs/api/usage/pagination-rest#make-a-request-for-paginated-data).

For operations that need to fetch large amounts of data, use the GraphQL Admin API to [perform bulk operations](/docs/api/usage/bulk-operations/queries) rather than paginating through resources.

### Delivery Profiles
The `activatedCarrierServices` field isn't compatible with multiple origin shipping, and has been removed.

Use the availableCarrierServices field instead. It includes both the carrier service and applicable countries.

### Inventory
Deprecation for legacy inventory behavior is now extended to all apps. To learn more, refer to [Migrating to support multiple locations](/docs/api/admin-rest/latest/resources/location#deprecation-schedule).

## Developer preview

There are no new Shopify admin features for the API changes in version 2019-10, and no developer preview. [Use a development store](/docs/api/development-stores) for your development environments.

To use the new API features, [call the 2019-10 version of the API](/docs/api/usage/versioning#making-requests-to-an-api-version).

## REST Admin API changes

Below are all the changes introduced in the 2019-10 release candidate of the REST Admin API.

<div class="accordion-container">
  <div class="accordion-controls">
    <button class="accordion-control" data-accordion-control-type="expand-all" type="button">Expand all</button>
  </div>
  <div class="accordion-content-container">
    <div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>Cursor-based pagination <span class="heading-flag breaking"></span></h3>
  </div>
  <div class="accordion-content">
    <p>Page-based pagination has been replaced by <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> across the remaining REST endpoints.</p>
<div class="heading-wrapper heading-wrapper-3"><h3 id="all-rest-api-endpoints">All REST API endpoints</h3><a class="article-anchor-link" href="#all-rest-api-endpoints"><span class="visuallyhidden">Anchor link to section titled "All REST API endpoints"</span></a></div>
<ul>
<li>You can&#39;t use both <code class="text-highlight text-highlight--grey">order</code> and <code class="text-highlight text-highlight--grey">since_id</code>. Using <code class="text-highlight text-highlight--grey">since_id</code> requires ordering by <code class="text-highlight text-highlight--grey">id asc</code> and the ordering is done automatically. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="abandonedcheckouts">AbandonedCheckouts</h3><a class="article-anchor-link" href="#abandonedcheckouts"><span class="visuallyhidden">Anchor link to section titled "AbandonedCheckouts"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/checkouts.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="articles">Articles</h3><a class="article-anchor-link" href="#articles"><span class="visuallyhidden">Anchor link to section titled "Articles"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/blogs/#{blog_id}/articles.json</code>. <span class="heading-flag breaking"></span></li>
<li>If <code class="text-highlight text-highlight--grey">blog_id</code> is used and the blog doesn’t have any articles, then no result are returned. In previous version, <code class="text-highlight text-highlight--grey">blog_id</code> tried to match the filters against all articles in a shop, if the blog with  <code class="text-highlight text-highlight--grey">blog_id</code> didn&#39;t have any articles. <span class="heading-flag breaking"></span></li>
<li>The default sort order has changed. Now blog posts are sorted by <code class="text-highlight text-highlight--grey">id desc</code>. Previously they were sorted by unpublished first and then published blog post sorted by the date they were published. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="blogs">Blogs</h3><a class="article-anchor-link" href="#blogs"><span class="visuallyhidden">Anchor link to section titled "Blogs"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/blogs.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="comments">Comments</h3><a class="article-anchor-link" href="#comments"><span class="visuallyhidden">Anchor link to section titled "Comments"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/comments.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="customcollections">CustomCollections</h3><a class="article-anchor-link" href="#customcollections"><span class="visuallyhidden">Anchor link to section titled "CustomCollections"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/custom_collections.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<p>Requests that pass a value for title will match only if the value is the same as the complete title. Partial matches aren&#39;t supported.</p>
<div class="heading-wrapper heading-wrapper-3"><h3 id="customeraddresses">CustomerAddresses</h3><a class="article-anchor-link" href="#customeraddresses"><span class="visuallyhidden">Anchor link to section titled "CustomerAddresses"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/customers/#{customer_id}/addresses.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="customers">Customers</h3><a class="article-anchor-link" href="#customers"><span class="visuallyhidden">Anchor link to section titled "Customers"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/customers.json</code> and <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/customers/search.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="discountcodes-price-rules">DiscountCodes (Price Rules)</h3><a class="article-anchor-link" href="#discountcodes-price-rules"><span class="visuallyhidden">Anchor link to section titled "DiscountCodes (Price Rules)"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/price_rules/#{price_rule_id}/discount_codes.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="disputes-shopify-payments">Disputes (Shopify Payments)</h3><a class="article-anchor-link" href="#disputes-shopify-payments"><span class="visuallyhidden">Anchor link to section titled "Disputes (Shopify Payments)"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/shopify_payments/disputes.json</code>. <span class="heading-flag breaking"></span></li>
<li>No longer accept limits over 250. Limits over 250 return an error. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="draftorders">DraftOrders</h3><a class="article-anchor-link" href="#draftorders"><span class="visuallyhidden">Anchor link to section titled "DraftOrders"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/draft_orders.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="fulfillments">Fulfillments</h3><a class="article-anchor-link" href="#fulfillments"><span class="visuallyhidden">Anchor link to section titled "Fulfillments"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/orders/#{order_id}/fulfillments.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="giftcards">GiftCards</h3><a class="article-anchor-link" href="#giftcards"><span class="visuallyhidden">Anchor link to section titled "GiftCards"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/gift_cards.json</code> and <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/gift_cards/search.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="inventoryitems">InventoryItems</h3><a class="article-anchor-link" href="#inventoryitems"><span class="visuallyhidden">Anchor link to section titled "InventoryItems"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/inventory_items.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="inventorylevels">InventoryLevels</h3><a class="article-anchor-link" href="#inventorylevels"><span class="visuallyhidden">Anchor link to section titled "InventoryLevels"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/inventory_levels.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="locationlevels">LocationLevels</h3><a class="article-anchor-link" href="#locationlevels"><span class="visuallyhidden">Anchor link to section titled "LocationLevels"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/locations/#{location_id}/inventory_levels.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="marketingevents">MarketingEvents</h3><a class="article-anchor-link" href="#marketingevents"><span class="visuallyhidden">Anchor link to section titled "MarketingEvents"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/marketing_events.json</code>. <span class="heading-flag breaking"></span></li>
<li><code class="text-highlight text-highlight--grey">offset</code> is deprecated, it returns an error if a value is passed. You can use <code class="text-highlight text-highlight--grey">since_id</code> instead. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="orders">Orders</h3><a class="article-anchor-link" href="#orders"><span class="visuallyhidden">Anchor link to section titled "Orders"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/orders.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="orderrisks">OrderRisks</h3><a class="article-anchor-link" href="#orderrisks"><span class="visuallyhidden">Anchor link to section titled "OrderRisks"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/orders/#{order_id}/risks.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="pages">Pages</h3><a class="article-anchor-link" href="#pages"><span class="visuallyhidden">Anchor link to section titled "Pages"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/pages.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="payouts-shopify-payments">Payouts (Shopify Payments)</h3><a class="article-anchor-link" href="#payouts-shopify-payments"><span class="visuallyhidden">Anchor link to section titled "Payouts (Shopify Payments)"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/shopify_payments/payouts.json</code>. <span class="heading-flag breaking"></span></li>
<li>No longer accept limits over 250. Limits over 250 return an error. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="pricerules">PriceRules</h3><a class="article-anchor-link" href="#pricerules"><span class="visuallyhidden">Anchor link to section titled "PriceRules"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/product_listings/product_ids.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="productids">ProductIds</h3><a class="article-anchor-link" href="#productids"><span class="visuallyhidden">Anchor link to section titled "ProductIds"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/product_listings/product_ids.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="productvariants">ProductVariants</h3><a class="article-anchor-link" href="#productvariants"><span class="visuallyhidden">Anchor link to section titled "ProductVariants"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/products/#{product_id}/variants.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="redirects">Redirects</h3><a class="article-anchor-link" href="#redirects"><span class="visuallyhidden">Anchor link to section titled "Redirects"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/redirects/#{redirect_id}.json</code>. <span class="heading-flag breaking"></span></li>
<li>Requests that pass a value for <code class="text-highlight text-highlight--grey">path</code> and <code class="text-highlight text-highlight--grey">target</code> will match only if the value is the same as the complete value. Partial matches aren&#39;t supported. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="refunds">Refunds</h3><a class="article-anchor-link" href="#refunds"><span class="visuallyhidden">Anchor link to section titled "Refunds"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/orders/#{order_id}/refunds.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="reports">Reports</h3><a class="article-anchor-link" href="#reports"><span class="visuallyhidden">Anchor link to section titled "Reports"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/reports.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="scripttags">ScriptTags</h3><a class="article-anchor-link" href="#scripttags"><span class="visuallyhidden">Anchor link to section titled "ScriptTags"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/script_tags.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="smartcollections">SmartCollections</h3><a class="article-anchor-link" href="#smartcollections"><span class="visuallyhidden">Anchor link to section titled "SmartCollections"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/smart_collections.json</code>. <span class="heading-flag breaking"></span></li>
<li>Requests that pass a value for title will match only if the value is the same as the complete title. Partial matches aren&#39;t supported. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="tendertransactions">TenderTransactions</h3><a class="article-anchor-link" href="#tendertransactions"><span class="visuallyhidden">Anchor link to section titled "TenderTransactions"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/tender_transactions.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="transactions-shopify-payments">Transactions (Shopify Payments)</h3><a class="article-anchor-link" href="#transactions-shopify-payments"><span class="visuallyhidden">Anchor link to section titled "Transactions (Shopify Payments)"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/shopify_payments/balance/transactions.json</code>. <span class="heading-flag breaking"></span></li>
<li>No longer accept limits over 250. Limits over 250 return an error. <span class="heading-flag breaking"></span></li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="webhooks">Webhooks</h3><a class="article-anchor-link" href="#webhooks"><span class="visuallyhidden">Anchor link to section titled "Webhooks"</span></a></div>
<ul>
<li>Removed the <code class="text-highlight text-highlight--grey">page</code> filter, and replaced page-based pagination with <a href="/docs/api/usage/pagination-rest">cursor-based pagination</a> for <code class="text-highlight text-highlight--grey">GET /admin/api/2019-10/webhooks.json</code>. <span class="heading-flag breaking"></span></li>
</ul>
  </div>
</div>
<div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>Inventory <span class="heading-flag breaking"></span></h3>
  </div>
  <div class="accordion-content">
    <p>Deprecation for legacy inventory behavior is extended to all apps. To learn more, refer to <a href="/docs/api/admin-rest/latest/resources/location#deprecation-schedule">Migrating to support multiple locations</a>.</p>
<p><strong>Removed fields</strong> <span class="heading-flag breaking"></span></p>
<ul>
<li><code class="text-highlight text-highlight--grey">inventory_quantity_adjustment</code> field was removed from <code class="text-highlight text-highlight--grey">Product Variant</code></li>
<li><code class="text-highlight text-highlight--grey">inventory_quantity</code> field was removed from <code class="text-highlight text-highlight--grey">Product Variant</code></li>
<li><code class="text-highlight text-highlight--grey">restock</code> field was removed from <code class="text-highlight text-highlight--grey">Refund</code></li>
</ul>
<p><strong>Required fields</strong> <span class="heading-flag breaking"></span></p>
<ul>
<li><code class="text-highlight text-highlight--grey">location_id</code> is required when creating fulfillments</li>
<li><code class="text-highlight text-highlight--grey">location_id</code> and <code class="text-highlight text-highlight--grey">restock_type</code> are required when creating refunds</li>
</ul>
  </div>
</div>
<div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>3D Secure support</h3>
  </div>
  <div class="accordion-content">
    <p>The checkout payment flow now supports customer authentication with 3D Secure. To learn more, refer to <a href="/docs/apps/build/payments">Authenticating payments with 3D Secure</a>.</p>
<div class="heading-wrapper heading-wrapper-3"><h3 id="checkout">Checkout</h3><a class="article-anchor-link" href="#checkout"><span class="visuallyhidden">Anchor link to section titled "Checkout"</span></a></div>
<ul>
<li>Added the <code class="text-highlight text-highlight--grey">next_action</code> property for authenticating payments with 3D Secure.</li>
</ul>
<div class="heading-wrapper heading-wrapper-3"><h3 id="payment">Payment</h3><a class="article-anchor-link" href="#payment"><span class="visuallyhidden">Anchor link to section titled "Payment"</span></a></div>
<ul>
<li>Added the <code class="text-highlight text-highlight--grey">next_action</code> property for authenticating payments with 3D Secure.</li>
</ul>
  </div>
</div>
<div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>Changes to webhooks</h3>
  </div>
  <div class="accordion-content">
    <p>The following changes have been made to the <a href="/docs/api/admin-rest/latest/resources/webhook">Webhook</a> resource:</p>
<p><strong>New properties</strong></p>
<ul>
<li><code class="text-highlight text-highlight--grey">private_metafield_namespaces</code> was added. It accepts an optional array of namespaces for any private metafields that should be included with each webhook. Payloads include only the private metafields that were created through the app itself.</li>
</ul>
<p><strong>New topics</strong></p>
<ul>
<li><code class="text-highlight text-highlight--grey">locales/create</code> was added as part of the new <a href="#graphql-admin-api-changes">translation feature for the GraphQL Admin API</a>.</li>
<li><code class="text-highlight text-highlight--grey">locales/update</code> was added as part of the new <a href="#graphql-admin-api-changes">translation feature for the GraphQL Admin API</a>.</li>
</ul>
  </div>
</div>
  </div>
</div>


## GraphQL Admin API changes

Below are all the changes introduced in the 2019-10 version of the GraphQL Admin API.

<div class="accordion-container">
  <div class="accordion-controls">
    <button class="accordion-control" data-accordion-control-type="expand-all" type="button">Expand all</button>
  </div>
  <div class="accordion-content-container">
    <div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>Delivery profiles <span id="delivery-profiles" class="heading-flag breaking"></span></h3>
  </div>
  <div class="accordion-content">
    <p>Delivery profiles store the advanced shipping information about the delivery methods and rates that apply to specific products. To learn more, refer to <a href="/docs/apps/build/purchase-options/deferred/delivery-and-deferment/build-delivery-profiles">Manage delivery profiles</a>.</p>
<p><strong>Removed fields and types</strong> <span class="heading-flag breaking"></span></p>
<ul>
<li><code class="text-highlight text-highlight--grey">activatedCarrierServices</code> field was removed from QueryRoot</li>
<li><code class="text-highlight text-highlight--grey">DeliveryCarrierServiceConnection</code> type was removed</li>
</ul>
<p><strong>New types</strong></p>
<ul>
<li><a href="/docs/api/admin-graphql/latest/enums/methoddefinitionsortkeys">MethodDefinitionSortKeys</a> enum was added</li>
<li><a href="/docs/api/admin-graphql/latest/objects/deliverylegacymodeblockedreason">DeliveryLegacyModeBlockedReason</a> enum was added</li>
<li><a href="/docs/api/admin-graphql/latest/objects/deliverylegacymodeblocked">DeliveryLegacyModeBlocked</a> object was added</li>
</ul>
<p><strong>Updated types</strong></p>
<ul>
<li><code class="text-highlight text-highlight--grey">leaveLegacyModeProfiles</code> input argument was added to <a href="/docs/api/admin-graphql/latest/objects/deliveryprofileupdate"><code class="text-highlight text-highlight--grey">deliveryProfileUpdate</code></a></li>
<li><code class="text-highlight text-highlight--grey">sortKey</code> argument was added to <a href="/docs/api/admin-graphql/latest/objects/deliverylocationgroupzone"><code class="text-highlight text-highlight--grey">DeliveryLocationGroupZone.methodDefinitions</code></a></li>
<li><code class="text-highlight text-highlight--grey">eligible</code> argument was added to <a href="/docs/api/admin-graphql/latest/objects/deliverylocationgroupzone"><code class="text-highlight text-highlight--grey">DeliveryLocationGroupZone.methodDefinitions</code></a></li>
</ul>
<p><strong>New fields</strong></p>
<ul>
<li><code class="text-highlight text-highlight--grey">locationsAvailableForDeliveryProfilesConnection</code> was added to <a href="/docs/api/admin-graphql/latest/objects/queryroot"><code class="text-highlight text-highlight--grey">QueryRoot</code></a></li>
<li><code class="text-highlight text-highlight--grey">legacyModeBlocked</code> was added to <a href="/docs/api/admin-graphql/latest/objects/deliverysetting"><code class="text-highlight text-highlight--grey">DeliverySetting</code></a></li>
<li><code class="text-highlight text-highlight--grey">includeAllProvinces</code> was added to <a href="/docs/api/admin-graphql/latest/objects/deliverycountryinput"><code class="text-highlight text-highlight--grey">DeliveryCountryInput</code></a></li>
</ul>
<p><strong>New mutations</strong></p>
<ul>
<li><a href="/docs/api/admin-graphql/latest/objects/deliveryshippingoriginassign">deliveryShippingOriginAssign</a> mutation was added</li>
</ul>
  </div>
</div>
<div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>Inventory <span class="heading-flag breaking"></span></h3>
  </div>
  <div class="accordion-content">
    <p>Deprecation for legacy inventory behavior is extended to all apps. To learn more, refer to <a href="/docs/api/admin-rest/latest/resources/location#deprecation-schedule">Migrating to support multiple locations</a>.</p>
<p><strong>Removed fields</strong> <span class="heading-flag breaking"></span></p>
<ul>
<li><code class="text-highlight text-highlight--grey">restock</code> field was removed from <code class="text-highlight text-highlight--grey">RefundInput</code></li>
<li><code class="text-highlight text-highlight--grey">inventoryQuantityAdjustment</code> field was removed from <code class="text-highlight text-highlight--grey">ProductVariantInput</code></li>
<li><code class="text-highlight text-highlight--grey">inventoryQuantity</code> field was removed from <code class="text-highlight text-highlight--grey">ProductVariantInput</code></li>
</ul>
  </div>
</div>
<div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>Bulk operations</h3>
  </div>
  <div class="accordion-content">
    <p>With bulk operations, you can fetch data asynchronously in bulk. To learn more, refer to <a href="/docs/api/usage/bulk-operations/queries">Performing bulk operations with GraphQL</a>.</p>
<p><strong>New types</strong></p>
<ul>
<li><a href="/docs/api/admin-graphql/latest/objects/bulkoperation">BulkOperation</a> object was added</li>
<li><a href="/docs/api/admin-graphql/latest/enums/bulkoperationstatus">BulkOperationStatus</a> object was added</li>
<li><a href="/docs/api/admin-graphql/latest/enums/BulkOperationErrorCode">BulkOperationErrorCode</a> enum was added</li>
</ul>
<p><strong>New fields</strong></p>
<ul>
<li><code class="text-highlight text-highlight--grey">currentBulkOperation</code> field was added to <a href="/docs/api/admin-graphql/latest/objects/queryroot">QueryRoot</a></li>
</ul>
<p><strong>New mutations</strong></p>
<ul>
<li><a href="/docs/api/admin-graphql/latest/mutations/bulkoperationcancel">bulkOperationCancel</a> mutation was added</li>
<li><a href="/docs/api/admin-graphql/latest/mutations/bulkoperationrunquery">bulkOperationRunQuery</a> mutation was added</li>
</ul>
  </div>
</div>
<div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>Translated content for resources</h3>
  </div>
  <div class="accordion-content">
    <p>You can manage translated content for multiple languages for Shopify resources. To learn more, refer to <a href="/docs/api/admin-graphql/latest/queries/translatableResource#section-examples">examples for retrieving translated content</a>.</p>
<p><strong>New types</strong></p>
<ul>
<li><a href="/docs/api/admin-graphql/latest/interfaces/HasPublishedTranslations">HasPublishedTranslations</a> interface was added</li>
<li><a href="/docs/api/admin-graphql/latest/input-objects/translationinput">TranslationInput</a> input object was added</li>
<li><a href="/docs/api/admin-graphql/latest/objects/translationerrorcode">TranslationErrorCode</a> enum was added</li>
<li><a href="/docs/api/admin-graphql/latest/objects/translationusererror">TranslationUserError</a> enum was added</li>
<li><a href="/docs/api/admin-graphql/latest/input-objects/shoplocaleinput">ShopLocaleInput</a> input object was added</li>
<li><a href="/docs/api/admin-graphql/latest/enums/translatableresourcetype">TranslatableResourceType</a> enum was added</li>
<li><a href="/docs/api/admin-graphql/latest/objects/translation">Translation</a> object was added</li>
<li><a href="/docs/api/admin-graphql/latest/objects/translatablecontent">TranslatableContent</a> object was added</li>
<li><a href="/docs/api/admin-graphql/latest/objects/translatableresource">TranslatableResource</a> object was added</li>
<li><a href="/docs/api/admin-graphql/latest/objects/shoplocale">ShopLocale</a> object was added</li>
<li><a href="/docs/api/admin-graphql/latest/objects/publishedtranslation">PublishedTranslation</a> object was added</li>
</ul>
<p><strong>Updated types</strong></p>
<ul>
<li><a href="/docs/api/admin-graphql/latest/objects/link">Link</a> object implements <a href="/docs/api/admin-graphql/latest/interfaces/haspublishedtranslations">HasPublishedTranslations</a> interface</li>
<li><a href="/docs/api/admin-graphql/latest/objects/onlinestoreblog">OnlineStoreBlog</a> object implements <a href="/docs/api/admin-graphql/latest/interfaces/haspublishedtranslations">HasPublishedTranslations</a> interface</li>
<li><a href="/docs/api/admin-graphql/latest/objects/productvariant">ProductVariant</a> object implements <a href="/docs/api/admin-graphql/latest/interfaces/haspublishedtranslations">HasPublishedTranslations</a> interface</li>
<li><a href="/docs/api/admin-graphql/latest/objects/onlinestorepage">OnlineStorePage</a> object implements <a href="/docs/api/admin-graphql/latest/interfaces/haspublishedtranslations">HasPublishedTranslations</a> interface</li>
<li><a href="/docs/api/admin-graphql/latest/objects/ProductOption">ProductOption</a> object implements <a href="/docs/api/admin-graphql/latest/interfaces/haspublishedtranslations">HasPublishedTranslations</a> interface</li>
<li><a href="/docs/api/admin-graphql/latest/enums/webhooksubscriptiontopic">LOCALES_UPDATE</a> was added to enum WebhookSubscriptionTopic</li>
<li><a href="/docs/api/admin-graphql/latest/objects/product">Product</a> object implements <a href="/docs/api/admin-graphql/latest/interfaces/haspublishedtranslations">HasPublishedTranslations</a> interface</li>
<li><a href="/docs/api/admin-graphql/latest/enums/webhooksubscriptiontopic">LOCALES_CREATE</a> was added to enum WebhookSubscriptionTopic</li>
<li><a href="/docs/api/admin-graphql/latest/objects/collection">Collection</a> object implements <a href="/docs/api/admin-graphql/latest/interfaces/haspublishedtranslations">HasPublishedTranslations</a> interface</li>
<li><a href="/docs/api/admin-graphql/latest/objects/onlinestorearticle">OnlineStoreArticle</a> object implements <a href="/docs/api/admin-graphql/latest/interfaces/haspublishedtranslations">HasPublishedTranslations</a> interface</li>
<li><a href="/docs/api/admin-graphql/latest/objects/shop">Shop</a> object implements <a href="/docs/api/admin-graphql/latest/interfaces/haspublishedtranslations">HasPublishedTranslations</a> interface</li>
</ul>
<p><strong>New fields</strong></p>
<ul>
<li><code class="text-highlight text-highlight--grey">translatableResources</code> was added to <a href="/docs/api/admin-graphql/latest/objects/queryroot"><code class="text-highlight text-highlight--grey">QueryRoot</code></a></li>
<li><code class="text-highlight text-highlight--grey">translatableResource</code> was added to <a href="/docs/api/admin-graphql/latest/objects/queryroot"><code class="text-highlight text-highlight--grey">QueryRoot</code></a></li>
<li><code class="text-highlight text-highlight--grey">shopLocales</code> was added to <a href="/docs/api/admin-graphql/latest/objects/queryroot"><code class="text-highlight text-highlight--grey">QueryRoot</code></a></li>
<li><code class="text-highlight text-highlight--grey">translations</code> was added to <a href="/docs/api/admin-graphql/latest/objects/shop"><code class="text-highlight text-highlight--grey">Shop</code></a></li>
<li><code class="text-highlight text-highlight--grey">translations</code> was added to <a href="/docs/api/admin-graphql/latest/objects/productvariant"><code class="text-highlight text-highlight--grey">ProductVariant</code></a></li>
<li><code class="text-highlight text-highlight--grey">translations</code> was added to <a href="/docs/api/admin-graphql/latest/objects/ProductOption"><code class="text-highlight text-highlight--grey">ProductOption</code></a></li>
<li><code class="text-highlight text-highlight--grey">translations</code> was added to <a href="/docs/api/admin-graphql/latest/objects/product"><code class="text-highlight text-highlight--grey">Product</code></a></li>
<li><code class="text-highlight text-highlight--grey">translations</code> was added to <a href="/docs/api/admin-graphql/latest/objects/collection"><code class="text-highlight text-highlight--grey">Collection</code></a></li>
<li><code class="text-highlight text-highlight--grey">translations</code> was added to <a href="/docs/api/admin-graphql/latest/objects/link"><code class="text-highlight text-highlight--grey">Link</code></a></li>
<li><code class="text-highlight text-highlight--grey">translations</code> was added to <a href="/docs/api/admin-graphql/latest/objects/onlinestorepage"><code class="text-highlight text-highlight--grey">OnlineStorePage</code></a></li>
<li><code class="text-highlight text-highlight--grey">translations</code> was added to <a href="/docs/api/admin-graphql/latest/objects/onlinestoreblog"><code class="text-highlight text-highlight--grey">OnlineStoreBlog</code></a></li>
<li><code class="text-highlight text-highlight--grey">translations</code> was added to <a href="/docs/api/admin-graphql/latest/objects/onlinestorearticle"><code class="text-highlight text-highlight--grey">OnlineStoreArticle</code></a></li>
</ul>
<p><strong>New mutations</strong></p>
<ul>
<li><a href="/docs/api/admin-graphql/latest/mutations/translationsremove">translationsRemove</a> was added</li>
<li><a href="/docs/api/admin-graphql/latest/mutations/translationsregister">translationsRegister</a> mutation was added</li>
<li><a href="/docs/api/admin-graphql/latest/mutations/shoplocaleupdate">shopLocaleUpdate</a> mutation was added</li>
<li><a href="/docs/api/admin-graphql/latest/mutations/shoplocaleenable">shopLocaleEnable</a> mutation was added</li>
<li><a href="/docs/api/admin-graphql/latest/mutations/shoplocaledisable">shopLocaleDisable</a> mutation was added</li>
</ul>
  </div>
</div>
<div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>Private metafields</h3>
  </div>
  <div class="accordion-content">
    <p>Private metafields are additional fields for Shopify resources. Unlike standard metafields, private metafields are visible only to the app that created them. To learn more, refer to <a href="/docs/apps/build/custom-data/metafields">Working with metafields using the GraphQL Admin API</a>.</p>
<p><strong>New types</strong></p>
<ul>
<li><a href="/docs/api/admin-graphql/latest/objects/privatemetafield">PrivateMetafield</a> was added</li>
<li><a href="/docs/api/admin-graphql/latest/input-objects/privatemetafielddeleteinput">PrivateMetafieldDeleteInput</a> was added</li>
<li><a href="/docs/api/admin-graphql/latest/input-objects/privatemetafieldvalueinput">PrivateMetafieldValueInput</a> was added</li>
<li><a href="/docs/api/admin-graphql/latest/input-objects/privatemetafieldinput">PrivateMetafieldInput</a> was added</li>
<li><a href="/docs/api/admin-graphql/latest/enums/privatemetafieldvaluetype">PrivateMetafieldValueType</a> was added</li>
</ul>
<p><strong>New fields</strong></p>
<ul>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/objects/queryroot"><code class="text-highlight text-highlight--grey">QueryRoot</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafield</code> was added to <a href="/docs/api/admin-graphql/latest/objects/queryroot"><code class="text-highlight text-highlight--grey">QueryRoot</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/input-objects/productinput"><code class="text-highlight text-highlight--grey">ProductInput</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/input-objects/DraftOrderInput"><code class="text-highlight text-highlight--grey">DraftOrderInput</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/input-objects/CustomerInput"><code class="text-highlight text-highlight--grey">CustomerInput</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/input-objects/CollectionInput"><code class="text-highlight text-highlight--grey">CollectionInput</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/input-objects/ProductVariantInput"><code class="text-highlight text-highlight--grey">ProductVariantInput</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/objects/shop"><code class="text-highlight text-highlight--grey">Shop</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafield</code> was added to <a href="/docs/api/admin-graphql/latest/objects/shop"><code class="text-highlight text-highlight--grey">Shop</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/objects/draftorder"><code class="text-highlight text-highlight--grey">DraftOrder</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafield</code> was added to <a href="/docs/api/admin-graphql/latest/objects/draftorder"><code class="text-highlight text-highlight--grey">DraftOrder</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/objects/order"><code class="text-highlight text-highlight--grey">Order</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafield</code> was added to <a href="/docs/api/admin-graphql/latest/objects/order"><code class="text-highlight text-highlight--grey">Order</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/objects/customer"><code class="text-highlight text-highlight--grey">Customer</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafield</code> was added to <a href="/docs/api/admin-graphql/latest/objects/customer"><code class="text-highlight text-highlight--grey">Customer</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/objects/productvariant"><code class="text-highlight text-highlight--grey">ProductVariant</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafield</code> was added to <a href="/docs/api/admin-graphql/latest/objects/productvariant"><code class="text-highlight text-highlight--grey">ProductVariant</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/objects/product"><code class="text-highlight text-highlight--grey">Product</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafield</code> was added to <a href="/docs/api/admin-graphql/latest/objects/product"><code class="text-highlight text-highlight--grey">Product</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/objects/collection"><code class="text-highlight text-highlight--grey">Collection</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafield</code> was added to <a href="/docs/api/admin-graphql/latest/objects/collection"><code class="text-highlight text-highlight--grey">Collection</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/interfaces/hasmetafields"><code class="text-highlight text-highlight--grey">HasMetafields</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafield</code> was added to <a href="/docs/api/admin-graphql/latest/interfaces/hasmetafields"><code class="text-highlight text-highlight--grey">HasMetafields</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafields</code> was added to <a href="/docs/api/admin-graphql/latest/objects/image"><code class="text-highlight text-highlight--grey">Image</code></a></li>
<li><code class="text-highlight text-highlight--grey">privateMetafield</code> was added to <a href="/docs/api/admin-graphql/latest/objects/image"><code class="text-highlight text-highlight--grey">Image</code></a></li>
</ul>
<p><strong>New mutations</strong></p>
<ul>
<li><a href="/docs/api/admin-graphql/latest/mutations/privatemetafieldupsert">privateMetafieldUpsert</a> mutation was added</li>
<li><a href="/docs/api/admin-graphql/latest/mutations/privatemetafielddelete">privateMetafieldDelete</a> mutation was added</li>
</ul>
  </div>
</div>
<div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>Shipping lines</h3>
  </div>
  <div class="accordion-content">
    <p>The following missing fields that were available in the REST Admin API were added to the ShippingLine object type.</p>
<p><strong>New fields</strong></p>
<ul>
<li><code class="text-highlight text-highlight--grey">carrierIdentifier</code> was added to <a href="/docs/api/admin-graphql/latest/objects/ShippingLine"><code class="text-highlight text-highlight--grey">ShippingLine</code></a></li>
<li><code class="text-highlight text-highlight--grey">source</code> was added to <a href="/docs/api/admin-graphql/latest/objects/ShippingLine"><code class="text-highlight text-highlight--grey">ShippingLine</code></a></li>
<li><code class="text-highlight text-highlight--grey">requestedFulfillmentService</code> was added to <a href="/docs/api/admin-graphql/latest/objects/ShippingLine"><code class="text-highlight text-highlight--grey">ShippingLine</code></a></li>
<li><code class="text-highlight text-highlight--grey">phone</code> was added to <a href="/docs/api/admin-graphql/latest/objects/ShippingLine"><code class="text-highlight text-highlight--grey">ShippingLine</code></a></li>
<li><code class="text-highlight text-highlight--grey">id</code> was added to <a href="/docs/api/admin-graphql/latest/objects/ShippingLine"><code class="text-highlight text-highlight--grey">ShippingLine</code></a></li>
<li><code class="text-highlight text-highlight--grey">deliveryCategory</code> was added to <a href="/docs/api/admin-graphql/latest/objects/ShippingLine"><code class="text-highlight text-highlight--grey">ShippingLine</code></a></li>
<li><code class="text-highlight text-highlight--grey">code</code> was added to <a href="/docs/api/admin-graphql/latest/objects/ShippingLine"><code class="text-highlight text-highlight--grey">ShippingLine</code></a></li>
<li><code class="text-highlight text-highlight--grey">taxLines</code> was added to <a href="/docs/api/admin-graphql/latest/objects/ShippingLine"><code class="text-highlight text-highlight--grey">ShippingLine</code></a></li>
</ul>
  </div>
</div>
<div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>Minor non-breaking changes</h3>
  </div>
  <div class="accordion-content">
    <p><strong>Updated types</strong></p>
<ul>
<li><code class="text-highlight text-highlight--grey">SLL</code> was added to <a href="/docs/api/admin-graphql/latest/enums/currencycode"><code class="text-highlight text-highlight--grey">CurrencyCode</code></a></li>
<li><code class="text-highlight text-highlight--grey">TOP</code> was added to <a href="/docs/api/admin-graphql/latest/enums/currencycode"><code class="text-highlight text-highlight--grey">CurrencyCode</code></a></li>
<li><code class="text-highlight text-highlight--grey">TJS</code> was added to <a href="/docs/api/admin-graphql/latest/enums/currencycode"><code class="text-highlight text-highlight--grey">CurrencyCode</code></a></li>
<li><code class="text-highlight text-highlight--grey">DJF</code> was added to <a href="/docs/api/admin-graphql/latest/enums/currencycode"><code class="text-highlight text-highlight--grey">CurrencyCode</code></a></li>
<li><code class="text-highlight text-highlight--grey">LYD</code> was added to <a href="/docs/api/admin-graphql/latest/enums/currencycode"><code class="text-highlight text-highlight--grey">CurrencyCode</code></a></li>
<li><code class="text-highlight text-highlight--grey">IRR</code> was added to <a href="/docs/api/admin-graphql/latest/enums/currencycode"><code class="text-highlight text-highlight--grey">CurrencyCode</code></a></li>
</ul>
<p><strong>New fields</strong></p>
<ul>
<li><code class="text-highlight text-highlight--grey">statusTransitionedAt</code> was added to object type <a href="/docs/api/admin-graphql/latest/objects/marketingactivity"><code class="text-highlight text-highlight--grey">MarketingActivity</code></a></li>
<li><code class="text-highlight text-highlight--grey">taxCode</code> was added to object type <a href="/docs/api/admin-graphql/latest/objects/productvariant"><code class="text-highlight text-highlight--grey">ProductVariant</code></a></li>
</ul>
  </div>
</div>
  </div>
</div>


## Storefront API changes

Below are all the changes introduced in the 2019-10 version of the [Storefront API](/docs/api/storefront/reference).

<div class="accordion-container">
  <div class="accordion-controls">
    <button class="accordion-control" data-accordion-control-type="expand-all" type="button">Expand all</button>
  </div>
  <div class="accordion-content-container">
    <div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>3D Secure support</h3>
  </div>
  <div class="accordion-content">
    <p>The checkout payment flow now supports customer authentication with 3D Secure. To learn more, refer to <a href="/docs/apps/build/payments">Authenticating payments with 3D Secure</a>.</p>
<p><strong>New fields</strong></p>
<ul>
<li><code class="text-highlight text-highlight--grey">nextActionUrl</code> was added to <a href="/docs/api/storefront/reference/checkouts/payment#nextactionurl-2019-10">Payment</a></li>
</ul>
  </div>
</div>
<div class="accordion-item">
  <div class="accordion-link">
    <div class="chevron-up"></div>
    <div class="chevron-down"></div>
    <h3>Minor non-breaking changes</h3>
  </div>
  <div class="accordion-content">
    <ul>
<li><code class="text-highlight text-highlight--grey">SLL</code> was added to <a href="/docs/api/storefront/latest/enums/currencycode">CurrencyCode</a></li>
<li><code class="text-highlight text-highlight--grey">TOP</code> was added to <a href="/docs/api/storefront/latest/enums/currencycode">CurrencyCode</a></li>
<li><code class="text-highlight text-highlight--grey">TJS</code> was added to <a href="/docs/api/storefront/latest/enums/currencycode">CurrencyCode</a></li>
<li><code class="text-highlight text-highlight--grey">DJF</code> was added to <a href="/docs/api/storefront/latest/enums/currencycode">CurrencyCode</a></li>
<li><code class="text-highlight text-highlight--grey">LYD</code> was added to <a href="/docs/api/storefront/latest/enums/currencycode">CurrencyCode</a></li>
<li><code class="text-highlight text-highlight--grey">IRR</code> was added to <a href="/docs/api/storefront/latest/enums/currencycode">CurrencyCode</a></li>
<li><code class="text-highlight text-highlight--grey">GNF</code> was added to <a href="/docs/api/storefront/latest/enums/currencycode">CurrencyCode</a></li>
</ul>
  </div>
</div>
  </div>
</div>


### Corresponding Buy SDK versions

<table>
  <tr>
    <th>SDK</th>
    <th>Supported Versions</th>
  </tr>
  <tr>
    <td>Mobile Buy SDK Android</td>
    <td>3.6.0</td>
  </tr>
  <tr>
    <td>Mobile Buy SDK iOS</td>
    <td>3.6.1</td>
  </tr>
  <tr>
    <td>Unity Buy SDK</td>
    <td>1.2.0</td>
  </tr>
  <tr>
    <td>JS Buy SDK</td>
    <td>2.8.0, 2.8.1</td>
  </tr>
  <tr>
    <td>Buy Button JS</td>
    <td>N/A</td>
  </tr>
</table>