PUT
/
checkout
/
cart
/
{cart_id}
/
skus
/
{order_sku_id}

Update a SKU in a cart given a cart_id and an order_sku_id.

You can use the Update SKU call to make changes such as quantity changes without having to remove the item from cart.

Headers

X-Violet-Token
string
X-Violet-App-Secret
string
X-Violet-App-Id
integer

Path Parameters

cart_id
integer
required
order_sku_id
integer
required

Query Parameters

price_cart
boolean
default: false
async
boolean
default: false

Body

application/json
id
integer
merchant_id
integer

ID of the Merchant the SKU belongs to

app_id
integer

ID of the App creating the Order

product_id
string

ID of the Product

sku_id
integer
required

ID of the referenced SKU

external_id
string

ID of the SKU on the External Ecommerce Platform

name
string

Name of the SKU

brand
string

Brand Name

thumbnail
string

URL of the thumbnail image. Useful for order overview displays

quantity
integer

Quantity of the SKU being purchased. Quantities over 1000 will default to 1000

price
integer

Price of the individual SKU. In Cents

weight
number

Weight of SKU

height
number

Height of SKU

width
number

Width of SKU

length
number

Length of SKU

available
boolean

Is the product still available for purchase. If a SKU becomes unavailable it likely means that the product became out of stock after it was added to the cart. Unavailable SKUs cannot be purchased.

status
enum<string>

Sku Status

Available options:
IN_PROGRESS,
PROCESSING,
SHIPPED,
PARTIALLY_SHIPPED,
DELIVERED,
COULD_NOT_DELIVER,
RETURNED,
CANCELED,
REFUNDED,
ERROR,
PARTIALLY_RETURNED,
PARTIALLY_REFUNDED
product_type
enum<string>

Product Type

Available options:
PHYSICAL,
DIGITAL,
VIRTUAL,
BUNDLED
custom
boolean

Is the Sku custom. True when the price has been overridden.

custom_properties
array | null

Used to provide the merchant with custom values for the product. This functionality is currently limited to Shopify merchants.

quantity_fulfilled
integer

The quantity of this item that has been fulfilled

order_sku_rates
object[]
line_price
integer

Price of the SKU multiplied by the Quantity. In Cents

Response

default - application/json
id
integer
token
string
errors
object[]

Errors on the Order. During checkout, if there was an error or issue on one of the order's bags, there will be an error added to this list describing the issue. The checkout API will return 200 with the order object in the response even if there was an issue with a bag so you must always check the response for errors in this list to know if there was an issue on the order.

user_id
integer

ID of the User placing the order

app_id
integer

ID of the App creating the order

developer_id
integer

ID of the Developer who placed

customer
object

The Customer Placing the Order

bags
object[]

Bags in the Order

shipping_address
object

The shipping or billing address of a user placing an order

billing_address
object

The shipping or billing address of a user placing an order

payment_method
object

Payment Method belonging to an Order

sub_total
integer

The price of the Order in the base currency before discounts, shipping, duties, taxes, and tips. In Cents.

shipping_total
integer

The sum of all shipping methods applied to the Order in the base currency. In Cents.

tax_total
integer

The sum of all the taxes applied to the Order in the base currency. In Cents.

discount_total
integer

The total discounts applied to the price of the Order in the base currency. In Cents.

total
integer

The sum of all item prices, discounts, shipping, and taxes applied to the Order in the base currency. In Cents.

app_customer_id
string

App Customer ID. This should be used to map the order to the ID of the customer in your application.

app_order_id
string

App Order ID. This should be set to a unique identifier in your system. While not enforced unique in Violet's system, it is strongly recommended that unique values are used for each cart to help correlate identifiers between Violet's system and yours.

status
enum<string>
required

Status of the Order

Available options:
IN_PROGRESS,
PROCESSING,
COMPLETED,
CANCELED,
PARTIALLY_REFUNDED,
REFUNDED,
REQUIRES_ACTION
is_guest
boolean

Order is Guest

date_created
string

Date of order creation

date_last_modified
string

Date of last order update

priced
boolean

Is the cart priced

wallet_based_checkout
boolean

Is this cart going to be placed through wallet-based checkout

currency
string

Base currency of cart

referral_id
string

Optional value used to represent an identifier in your system. This value is not required to represent a referral. It can represent the ID of anything in your system and can be used to filter order lookup results. Max length of 128 characters.

currency_symbol
string

Symbol representing the desired currency

app_name
string

Name of app that originated the order. Use the "extended" query param when looking up orders to include this value.

stripe_key
string

Stripe publishable key. Use for tokenizing payment methods.

payment_intent_client_secret
string

Payment intent client secret. Use for payment intent based payment capture and external captures

payment_transactions
object[]

Payment Transactions associated to the bags on this Cart

order_id
integer
guest
boolean
order_status
enum<string>
Available options:
IN_PROGRESS,
PROCESSING,
COMPLETED,
CANCELED,
PARTIALLY_REFUNDED,
REFUNDED,
REQUIRES_ACTION
intent_based_checkout
boolean

Boolean indicating if the cart/order will be payed using a payment intent.