Cart
Requirements
Anchor link to section titled "Requirements"These actions require the following app versions:
- Point of Sale iOS v5.11.0 or above
- Point of Sale Android v3.3.2 or above
Create an app and import the Cart
module from @shopify/app-bridge/actions
. Note that we'll be referring to this sample application throughout the examples below.
Create a cart
Anchor link to section titled "Create a cart"Create a cart and subscribe to cart updates:
Handling error
Anchor link to section titled "Handling error"
Feature Detection
Anchor link to section titled "Feature Detection"Cart actions are available only on the Shopify Point of Sale app, so it’s a good idea to check if an action is available before you call it. This makes sure that you're able to display the appropriate UI when a feature is or is not available. To learn more about Feature Detection, see Features.
The following example shows how you could use Feature Detection with cart actions by requesting if Cart.Action.FETCH
is available and using the result to alter your UI.
Start off by requesting if the cart group is available:
The promise block resolves to a state object containing the status of the cart actions. Query for Cart.Action.FETCH
and then Dispatch
inside that object. If it's true
, follow the instructions below for Fetch cart. If it's false
, the cart action is not available in this context. Using this approach, it’s possible to distinguish between an empty cart and a context where cart is not available.
Update cart
Anchor link to section titled "Update cart"Group | Cart |
---|---|
Action | UPDATE |
Action Type | APP::CART::UPDATE |
Description | Retrieves the latest state of the currently active cart from Shopify POS. |
Subscribing to this action provides you with cart updates.
NoteAttribute Payload
Anchor link to section titled "NoteAttribute Payload"Key | Type | Description |
---|---|---|
name |
String | The name of the attribute. |
value |
String | The value of the attribute. |
Key | Type | Description |
---|---|---|
subtotal |
String | The total cost of the current cart including discounts, but before taxes and shipping. Value is based on the shop's existing currency settings. |
taxTotal |
String | The sum of taxes for the current cart. Value is based on the shop's existing currency settings. |
grandTotal |
String | The total cost of the current cart, after taxes and discounts have been applied. Value is based on the shop's existing currency settings. |
customer |
Customer? | The customer associated to the current cart. |
lineItems |
Array[LineItem] | A list of lineItem objects. |
noteAttributes |
Array[NoteAttribute]? | A list of objects containing cart properties. |
cartDiscount |
Discount? | The current discount applied to the entire cart. |
note |
String? | A note associated with the cart. |
Group | Cart |
---|---|
Action | FETCH |
Action Type | APP::CART::FETCH |
Description | Requests the currently active cart from Shopify POS. |
A cart needs to call fetch before receiving data in Cart.Action.UPDATE
:
Set customer
Anchor link to section titled "Set customer"Group | Cart |
---|---|
Action | SET_CUSTOMER |
Action Type | APP::CART::SET_CUSTOMER |
Description | Sets a customer on the current cart. |
This is the customer that will be attached to the cart and subsequent order. You can either set a customer with an existing customer ID or create a new customer.
Existing customer with ID:
New customer:
Key | Type | Description |
---|---|---|
data |
Customer | The customer data. |
Customer Payload
Anchor link to section titled "Customer Payload"Key | Type | Description |
---|---|---|
id |
Number? | The ID of existing customer. |
email |
String? | The email for new customer. |
firstName |
String? | The first name for new customer. |
lastName |
String? | The last name for new customer. |
note |
String? | The note for new customer. |
Add customer address
Anchor link to section titled "Add customer address"Group | Cart |
---|---|
Action | ADD_CUSTOMER_ADDRESS |
Action Type | APP::CART::ADD_CUSTOMER_ADDRESS |
Description | Adds a new address on the customer associated with the current cart. |
Key | Type | Description |
---|---|---|
data |
Address | The data for creating a new address. |
Address Payload
Anchor link to section titled "Address Payload"Key | Type | Description |
---|---|---|
address1 |
String? | The customer's primary address. |
address2 |
String? | Any extra information associated with the address (Apartment #, Suite #, Unit #, etc.). |
city |
String? | The name of the customer's city. |
company |
String? | The company name associated with address. |
firstName |
String? | The first name of the customer. |
lastName |
String? | The last name of the customer. |
phone |
String? | The phone number of the customer. |
province |
String? | The province or state of the address. |
country |
String? | The country of the address. |
zip |
String? | The ZIP or postal code of the address. |
name |
String? | The name of the address. |
provinceCode |
String? | The acronym of the province or state. |
countryCode |
String? | The Country Code in ISO 3166-1 (alpha-2) format. |
Update customer address
Anchor link to section titled "Update customer address"Group | Cart |
---|---|
Action | UPDATE_CUSTOMER_ADDRESS |
Action Type | APP::CART::UPDATE_CUSTOMER_ADDRESS |
Description | Updates a new address on the customer associated with the current cart. |
Key | Type | Description |
---|---|---|
index |
Number | The index of the address to update. |
data |
Address | The fields of the address to update. |
Remove customer
Anchor link to section titled "Remove customer"Group | Cart |
---|---|
Action | REMOVE_CUSTOMER |
Action Type | APP::CART::REMOVE_CUSTOMER |
Description | Removes a customer from the current cart. |
Set discount
Anchor link to section titled "Set discount"Group | Cart |
---|---|
Action | SET_DISCOUNT |
Action Type | APP::CART::SET_DISCOUNT |
Description | Sets a discount on the current cart. |
You can apply a discount to the entire cart, which will affect all line items. There are several different types of discounts. See below for an example of each type.
Flat amount discount:
Percentage discount:
Discount code discount:
Discount Amount Payload
Anchor link to section titled "Discount Amount Payload"Key | Type | Description |
---|---|---|
amount |
Number | The discount amount to be applied to the subtotal of the cart as a flat value or total percentage discount. flat discount amounts must be greater than 0. Discounts greater than the subtotal of the cart will be reduced to the subtotal amount. percent discount amounts must be between 0.0 and 1.0. |
discountDescription |
String? | A description of the discount being applied. Defaults to Discount, if not supplied. |
type |
String? | The discount type. The options are flat or percent. Defaults to flat, if not supplied. |
Discount Code Payload
Anchor link to section titled "Discount Code Payload"Key | Type | Description |
---|---|---|
discountCode |
String | The discount code to apply to the current cart. |
Key | Type | Description |
---|---|---|
data |
DiscountAmount | DiscountCode | The type of discount to apply to the current cart. |
Remove discount
Anchor link to section titled "Remove discount"Group | Cart |
---|---|
Action | REMOVE_DISCOUNT |
Action Type | APP::CART::REMOVE_DISCOUNT |
Description | Removes a discount from the current cart. |
Set cart properties
Anchor link to section titled "Set cart properties"Group | Cart |
---|---|
Action | SET_PROPERTIES |
Action Type | APP::CART::SET_PROPERTIES |
Description | Adds additional properties to the current cart. |
Key | Type | Description |
---|---|---|
data |
Object | The key-value pairs of properties to add to the current cart. |
Remove cart properties
Anchor link to section titled "Remove cart properties"Group | Cart |
---|---|
Action | REMOVE_PROPERTIES |
Action Type | APP::CART::REMOVE_PROPERTIES |
Description | Removes one or more properties from the current cart. |
Key | Type | Description |
---|---|---|
data |
Array[String] | A list of properties to remove from the current cart. |
Add line item
Anchor link to section titled "Add line item"Group | Cart |
---|---|
Action | ADD_LINE_ITEM |
Action Type | APP::CART::ADD_LINE_ITEM |
Description | Adds a new line item to the current cart. |
Line items can be added to the cart in two different ways: as a variant of a product, or as a quick sale item (usually used for one-off sales on items not backed by a variant).
Quick Sale line item:
Variant line item:
Line item Payload
Anchor link to section titled "Line item Payload"Key | Type | Description |
---|---|---|
price |
Number? | The price of the line item. Required if a variantId is not provided. Must be greater than or equal to 0 . |
quantity |
Number | The amount of items to add. Defaults to 1 if not provided. Must be greater than 0 . |
title |
String? | The name of the product, defaults to "Quick sale" if not supplied. |
variantId |
Number? | The unique ID of the variant being added. If not included, the product will be considered a custom sale. |
discount |
DiscountAmount? | A discount to apply to the line item. |
taxable |
Boolean? | A flag that indicates if the line item changes the taxes of the cart. Defaults to true if not provided. Only available to be set on custom sale items. |
properties |
Array[NoteAttribute]? | A list of objects containing item properties. |
Key | Type | Description |
---|---|---|
data |
LineItem | The data for creating a new line item in the current cart. |
Update line item
Anchor link to section titled "Update line item"Group | Cart |
---|---|
Action | UPDATE_LINE_ITEM |
Action Type | APP::CART::UPDATE_LINE_ITEM |
Description | Updates an existing line item quantity in the cart. |
Line item update payload
Anchor link to section titled "Line item update payload"Key | Type | Description |
---|---|---|
quantity |
Number | The amount of items to add. Must be greater than 0 . |
Key | Type | Description |
---|---|---|
index |
Number | Index of line item to update |
data |
Line Item Update | The data for updating a line item at the specified index. |
Remove line item
Anchor link to section titled "Remove line item"Group | Cart |
---|---|
Action | REMOVE_LINE_ITEM |
Action Type | APP::CART::REMOVE_LINE_ITEM |
Description | Removes an existing line item from the cart. |
Key | Type | Description |
---|---|---|
index |
Number | The index of line item to remove. |
Set line item discount
Anchor link to section titled "Set line item discount"Group | Cart |
---|---|
Action | SET_LINE_ITEM_DISCOUNT |
Action Type | APP::CART::SET_LINE_ITEM_DISCOUNT |
Description | Sets the discount on a line item in the current cart. |
Unlike cart discounts, line item discounts can't use discount codes. They support only flat amount discounts and percentage discounts.
Flat amount discount:
Percentage discount:
Key | Type | Description |
---|---|---|
index |
Number | The index of the line item to apply the discount to. |
data |
DiscountAmount | The discount to apply to the line item. |
Remove line item discount
Anchor link to section titled "Remove line item discount"Group | Cart |
---|---|
Action | REMOVE_LINE_ITEM_DISCOUNT |
Action Type | APP::CART::REMOVE_LINE_ITEM_DISCOUNT |
Description | Removes a line item discount in the current cart. |
Key | Type | Description |
---|---|---|
index |
Number | The index of the line item to remove the discount from. |
Set line item properties
Anchor link to section titled "Set line item properties"Group | Cart |
---|---|
Action | SET_LINE_ITEM_PROPERTIES |
Action Type | APP::CART::SET_LINE_ITEM_PROPERTIES |
Description | Adds a property to a given line item in the current cart. |
Key | Type | Description |
---|---|---|
data |
Object | The key-value pairs of properties to add to the specified line item. |
Remove line item properties
Anchor link to section titled "Remove line item properties"Group | Cart |
---|---|
Action | REMOVE_LINE_ITEM_PROPERTIES |
Action Type | APP::CART::REMOVE_LINE_ITEM_PROPERTIES |
Description | Removes a property from a given line item in the current cart. |
When removing properties, reference the key of property. In the properties that were set on the cart above, the keys were: referral and userID. You can pass in either of those values to remove them.
Key | Type | Description |
---|---|---|
index |
Number | The index of the line item to remove properties from. |
data |
Array[String] | A list of properties to remove from the specified line item. |
Group | Cart |
---|---|
Action | CLEAR |
Action Type | APP::CART::CLEAR |
Description | Remove all line items from the current cart. |