Complete checkout
Converts the cart into an order and returns it. Pass the payment reference
as the payment_uuid query parameter and send an Idempotency-Key header
so a retried request never places a second order. Access is scoped by the
cart_token in the path — the endpoint itself does not require
authentication. In Fluid’s recommended server-side integration you send a
company bearer token (Authorization: Bearer <company_token>) on every cart
request; it is optional at the endpoint but drives cart attribution and
wallet resolution for companies using isolated payment tokens (see the
Headless Commerce guide). payment_uuid is produced upstream by the Cart
payment surface (payments-v2026-04 tokenize/authorize, including the
requires_3ds branch) — it does not originate on this surface; see the Cart
payment reference for how to obtain it. Completion is final: once the cart
converts to an order it is locked and any further mutation returns 410.
Returns 404 when the cart is not found and 422 when the cart cannot be
completed.
curl --request POST \
--url https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/completeimport requests
url = "https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"order": {
"id": 123,
"email": "<string>",
"order_number": "<string>",
"source": "<string>",
"amount_in_base": "<string>",
"base_to_currency_rate": "<string>",
"note": "<string>",
"currency_code": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"token": "<string>",
"refundable_amount": "<string>",
"order_status": "<string>",
"fulfillment_status": "<string>",
"financial_status": "<string>",
"warehouse_id": 123,
"points_applied": 123,
"points_applied_amount": 123,
"points_applied_amount_in_currency": "<string>",
"order_total_after_points_redemption": 123,
"total_points_credited": 123,
"free_shipping": true,
"discount_codes": [
"<string>"
],
"created_subscriptions": [
"<string>"
],
"product_discount_codes": [
"<string>"
],
"shipping_discount_codes": [
"<string>"
],
"currency_symbol": "<string>",
"items_count": 123,
"quantity_count": 123,
"external_id": "<string>",
"customer_points_balance": 123,
"order_on_behalf_of": true,
"digital_only": true,
"enrollment_token": "<string>",
"shipping_total": "<string>",
"shipping_total_for_display": "<string>",
"company_logo_url": "<string>",
"primary_domain_hostname": "<string>",
"company_subdomain": "<string>",
"shipping": "<string>",
"transaction_fee": "<string>",
"transaction_fee_in_currency": "<string>",
"subtotal": "<string>",
"sub_total": "<string>",
"tax": "<string>",
"discount": "<string>",
"customer": "<string>",
"total": "<string>",
"subtotal_after_discounts": "<string>",
"total_in_currency": "<string>",
"tax_in_currency": "<string>",
"discount_in_currency": "<string>",
"sub_total_in_currency": "<string>",
"totals": {
"gross_subtotal": "<string>",
"gross_subtotal_in_currency": "<string>",
"net_subtotal": "<string>",
"net_subtotal_in_currency": "<string>",
"item_tax": "<string>",
"item_tax_in_currency": "<string>",
"shipping_net": "<string>",
"shipping_net_in_currency": "<string>",
"shipping_tax": "<string>",
"shipping_tax_in_currency": "<string>",
"total_tax": "<string>",
"total_tax_in_currency": "<string>",
"price_inclusive_of_tax": true,
"tax_label": "<string>"
},
"payment_status": "<string>",
"delivery_status": "<string>",
"delivery_method": "<string>",
"channel": "<string>",
"tags": "<string>",
"delivery_date": "<string>",
"current_adjustment_total": "<string>",
"current_subtotal": "<string>",
"current_discount": "<string>",
"current_tax": "<string>",
"current_shipping": "<string>",
"current_amount": "<string>",
"current_cv": "<string>",
"current_qv": "<string>",
"price_inclusive_of_tax": true,
"price_inclusive_tax_name": "<string>",
"amount": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"order_confirmation_url": "<string>",
"order_type": "<string>",
"phone": "<string>",
"status": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"recurring": [
{
"subtotal": "<string>",
"subtotal_in_currency": "<string>",
"interval": 123,
"interval_unit": "<string>",
"subtotal_for_display": "<string>",
"start_date": "<string>"
}
],
"metadata": {},
"volume_rep": {
"id": 123,
"email": "<string>",
"full_name": "<string>",
"image_url": "<string>"
},
"payment_details": {
"source": "<string>",
"payment_type": "<string>",
"payment_title": "<string>",
"details": {
"card_network": "<string>",
"card_brand": "<string>",
"last_four": "<string>",
"exp_month": "<string>",
"exp_year": "<string>",
"paypal_id": "<string>",
"status": "<string>",
"currency": "<string>",
"amount": "<string>",
"affirm_id": "<string>",
"checkout_id": "<string>",
"created": "<string>",
"auth_expiration": "<string>",
"transaction_id": "<string>",
"authorization_token": "<string>",
"session_id": "<string>",
"intent": "<string>",
"payment_method_id": 123,
"logo_url": "<string>"
}
},
"shipping_in_currency": {
"amount_in_currency": "<string>",
"surcharge_in_currency": "<string>"
},
"enrollment_pack": {
"enrollment_pack_id": 123,
"slug": "<string>",
"token": "<string>",
"title": "<string>",
"description": "<string>",
"enrollment_fee": "<string>",
"additional_volume": 123,
"canonical_url": "<string>",
"enrollment_fee_in_currency": "<string>",
"price": "<string>",
"price_in_currency": "<string>",
"subscription_price": "<string>",
"subscription_price_in_currency": "<string>",
"images": [
{
"id": 123,
"external_id": "<string>",
"image_path": "<string>",
"image_url": "<string>",
"image_url_i18n": {},
"position": 123,
"relateable_id": 123,
"relateable_type": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"uuid_v7": "<string>"
}
],
"items": [
{
"id": 123,
"title": "<string>",
"quantity": 123,
"price": "<string>",
"tax": "<string>",
"cv": "<string>",
"qv": "<string>",
"enrollment_pack_id": 123,
"subscription": true,
"display_to_customer": true,
"cv_total": "<string>",
"qv_total": "<string>",
"total": "<string>",
"metadata": {},
"price_in_currency": "<string>",
"tax_in_currency": "<string>",
"cv_in_currency": "<string>",
"qv_in_currency": "<string>",
"total_in_currency": "<string>",
"total_after_discounts_in_currency": "<string>",
"line_total_in_currency": "<string>",
"line_total_after_discounts_in_currency": "<string>",
"unit_price_display_authoritative": true,
"allow_subscription": true,
"total_after_discounts": "<string>",
"enrollment": true,
"subscription_plan_id": 123,
"subscription_plans": [
{
"id": 123,
"name": "<string>",
"billing_interval": 123,
"billing_interval_unit": "<string>",
"billing_interval_unit_identifier": "<string>",
"billing_frequency_in_words": "<string>",
"shipping_interval": 123,
"shipping_interval_unit": "<string>",
"volume_interval": 123,
"volume_interval_unit": "<string>",
"trial_period": 123,
"trial_period_unit": "<string>",
"split_volume": true,
"allow_max_billing_cycles": true,
"max_billing_cycles": 123,
"savings_display_mode": "<string>",
"company_default": true,
"products_count": 123,
"subscribers_count": 123,
"price": "<string>",
"price_in_currency": "<string>",
"subscription_start": "2023-11-07T05:31:56Z",
"subscribe_and_save": "<string>",
"subscribe_and_save_in_currency": "<string>",
"subscribe_and_save_for_display": "<string>",
"savings_label": "<string>"
}
],
"subscription_only": true,
"subscription_interval": 123,
"subscription_interval_unit": "<string>",
"subscription_interval_unit_identifier": "<string>",
"subscription_price": "<string>",
"subscription_price_in_currency": "<string>",
"subscription_start": "<string>",
"subscribe_and_save": "<string>",
"subscribe_and_save_in_currency": "<string>",
"subscribe_and_save_for_display": "<string>",
"errors": [
{}
],
"creditable_points": 123,
"product_title": "<string>"
}
]
},
"shipping_method": {
"id": 123,
"title": "<string>",
"delivery_time_estimate": "<string>"
},
"shipping_address": {
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"subdivision_code": "<string>",
"phone": "<string>"
},
"billing_address": {
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"subdivision_code": "<string>",
"phone": "<string>"
},
"ship_to": {
"id": 123,
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"subdivision_code": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"country_num_code": 123,
"phone": "<string>",
"default": true
},
"bill_to": {
"id": 123,
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"subdivision_code": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"country_num_code": 123,
"phone": "<string>",
"default": true
},
"company": {
"id": 123,
"name": "<string>",
"favicon_url": "<string>",
"primary_domain_hostname": "<string>",
"subdomain": "<string>",
"logo_url": "<string>",
"fluid_shop": "<string>",
"collect_phone": true,
"require_phone": true,
"require_billing_zip": true,
"checkout_primary_button_color": "<string>",
"checkout_primary_text_color": "<string>",
"checkout_secondary_button_color": "<string>",
"checkout_secondary_text_color": "<string>",
"order_on_behalf": true,
"reward_points_enabled": true,
"reward_points_apply_to_subtotal": true,
"reward_points_label_singular": "<string>",
"reward_points_label_plural": "<string>",
"collect_sms_marketing": true,
"collect_email_marketing": true,
"bundle_subscriptions": true,
"isolated_payment_tokens": true,
"kount_environment": "<string>",
"kount_client_id": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"iso": "<string>",
"iso_name": "<string>",
"iso3": "<string>",
"currency_code": "<string>",
"currency_symbol": "<string>",
"province_required": true,
"tax_enabled": true,
"price_inclusive_of_tax": true,
"price_inclusive_tax_name": "<string>",
"tax_standard_rate": 123
},
"warehouse": {
"id": 123,
"name": "<string>",
"active": true,
"external_id": "<string>",
"metadata": {}
},
"items": [
{
"id": 123,
"title": "<string>",
"quantity": 123,
"price": "<string>",
"total": "<string>",
"image_url": "<string>",
"variant_id": 123,
"tax": "<string>",
"cv": "<string>",
"qv": "<string>",
"enrollment_pack_id": 123,
"display_to_customer": true,
"discount_amount": "<string>",
"free_item": true,
"price_in_currency": "<string>",
"tax_in_currency": "<string>",
"cv_in_currency": "<string>",
"qv_in_currency": "<string>",
"discount_amount_in_currency": "<string>",
"sku": "<string>",
"display_price": "<string>",
"display_total": "<string>",
"ordered_variant": [
{
"option_type": "<string>",
"value": "<string>"
}
],
"total_after_discounts": "<string>",
"refundable_amount": "<string>",
"bundled_items": [
{}
],
"product": {
"id": 123,
"title": "<string>",
"image_url": "<string>",
"image_path": "<string>",
"cv": "<string>",
"tax": "<string>",
"sku": "<string>",
"metadata": {},
"external_id": "<string>",
"canonical_url": "<string>",
"price": "<string>",
"introduction": "<string>",
"price_in_currency": "<string>",
"tax_in_currency": "<string>",
"cv_in_currency": "<string>",
"metafields": [
{
"id": 123,
"namespace": "<string>",
"key": "<string>",
"value": "<string>",
"value_type": "<string>",
"description": "<string>",
"owner_type": "<string>",
"owner_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"metafield_definition": {
"id": 123,
"company_id": 123,
"namespace": "<string>",
"key": "<string>",
"name": "<string>",
"description": "<string>",
"value_type": "<string>",
"validation_rules": "<string>",
"owner_resource": "<string>",
"pinned": true,
"position": 123,
"locked": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"list_type": true,
"reference_type": true,
"supported_validations": [
"<string>"
],
"validation_description": "<string>",
"category_ids": [
123
]
}
}
],
"product_bundle_groups": [
{
"id": 123,
"title": "<string>",
"description": "<string>",
"group_type": "<string>",
"purpose": "<string>",
"min_selections": 123,
"max_selections": 123,
"selection_type": "<string>",
"pricing_config": {
"pricing_type": "<string>",
"hidden": true,
"fixed_price": "<string>",
"min_price": "<string>",
"country_pricing": [
{
"country_code": "<string>",
"enabled": true,
"price": "<string>",
"wholesale": "<string>",
"subscription_price": "<string>",
"wholesale_subscription_price": "<string>",
"points": "<string>",
"cv": 123,
"qv": 123,
"wholesale_cv": 123,
"wholesale_qv": 123
}
]
},
"allow_subscriptions": true,
"force_subscriptions": true,
"sort_order": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"images": [
{
"id": 123,
"image_url": "<string>",
"image_path": "<string>",
"position": 123,
"dam_asset_code": "<string>"
}
],
"bundle_group_items": [
{
"id": 123,
"quantity": 123,
"sort_order": 123,
"config": {
"price": "<string>",
"pc_price": "<string>",
"resolved_price": "<string>",
"resolved_wholesale_price": "<string>",
"resolved_cv": "<string>",
"resolved_qv": "<string>",
"resolved_wholesale_cv": "<string>",
"resolved_wholesale_qv": "<string>",
"cv": "<string>",
"qv": "<string>",
"pc_cv": "<string>",
"pc_qv": "<string>",
"is_default": true,
"quantity": 123,
"max_quantity": 123,
"allow_subscription": true,
"force_subscription": true,
"has_subscription_plans": true,
"subscription_plans": [
{
"id": 123,
"subscription_price_in_currency": "<string>",
"subscribe_and_save_in_currency": "<string>",
"subscribe_and_save_for_display": "<string>",
"wholesale_subscription_price_in_currency": "<string>",
"wholesale_subscribe_and_save_in_currency": "<string>",
"wholesale_subscribe_and_save_for_display": "<string>"
}
],
"image_url": "<string>",
"available_country_codes": [
"<string>"
],
"country_prices": {}
},
"variant": {
"id": 123,
"title": "<string>",
"display_name": "<string>",
"image_url": "<string>",
"image_path": "<string>",
"sku": "<string>",
"primary_image": "<string>",
"price": "<string>",
"price_in_currency": "<string>",
"currency_code": "<string>",
"options": [
{
"title": "<string>",
"value": "<string>"
}
],
"customer_limit": 123,
"active_variant_countries": [
"<string>"
],
"product": {
"id": 123,
"title": "<string>",
"image_url": "<string>",
"image_path": "<string>",
"cv": "<string>",
"tax": "<string>",
"sku": "<string>",
"metadata": {},
"external_id": "<string>",
"canonical_url": "<string>",
"price": "<string>",
"introduction": "<string>",
"price_in_currency": "<string>",
"tax_in_currency": "<string>",
"cv_in_currency": "<string>"
}
}
}
]
}
]
},
"variant": {
"id": 123,
"title": "<string>",
"display_name": "<string>",
"image_url": "<string>",
"image_path": "<string>",
"sku": "<string>",
"primary_image": "<string>",
"price": "<string>",
"price_in_currency": "<string>",
"currency_code": "<string>",
"options": [
{
"title": "<string>",
"value": "<string>"
}
]
},
"product_title": "<string>",
"variant_title": "<string>",
"variant_image": {
"id": 123,
"external_id": "<string>",
"image_path": "<string>",
"image_url": "<string>",
"image_url_i18n": {},
"position": 123,
"relateable_id": 123,
"relateable_type": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"uuid_v7": "<string>"
},
"subscription": true,
"subscription_interval": 123,
"subscription_interval_unit": "<string>",
"subscribe_and_save": "<string>",
"subscribe_and_save_in_currency": "<string>",
"subscribe_and_save_for_display": "<string>",
"subscription_price_in_currency": "<string>",
"subscription_plan_id": 123
}
],
"activities": [
{
"id": 123,
"user_id": 123,
"relation_type": "<string>",
"relation_id": 123,
"contact_id": 123,
"title": "<string>",
"description": "<string>",
"read_at": "2023-11-07T05:31:56Z",
"slug": "<string>",
"company_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"formatted_description": "<string>"
}
],
"adjustments": [
{
"id": 123,
"amount": "<string>",
"label": "<string>",
"adjustment_type": "<string>",
"description": "<string>",
"source_type": "<string>",
"source_id": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
],
"metafields": [
{
"id": 123,
"namespace": "<string>",
"key": "<string>",
"value": "<string>",
"value_type": "<string>",
"description": "<string>",
"owner_type": "<string>",
"owner_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"metafield_definition": {
"id": 123,
"company_id": 123,
"namespace": "<string>",
"key": "<string>",
"name": "<string>",
"description": "<string>",
"value_type": "<string>",
"validation_rules": "<string>",
"owner_resource": "<string>",
"pinned": true,
"position": 123,
"locked": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"list_type": true,
"reference_type": true,
"supported_validations": [
"<string>"
],
"validation_description": "<string>",
"category_ids": [
123
]
}
}
],
"tracking_informations": [
{
"id": 123,
"tracking_number": "<string>",
"shipping_carrier": "<string>",
"tracking_url": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"shop_url": "<string>"
}
}{
"error_message": "<string>",
"errors": "<string>",
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}{
"error_message": "<string>",
"errors": "<string>",
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}Headers
Idempotency key for safe retries
Path Parameters
Cart token
Query Parameters
Payment UUID from a prior tokenize/authorize step
curl --request POST \
--url https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/completeimport requests
url = "https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fluid.app/api/checkout/v2026-04/carts/{cart_token}/complete")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"order": {
"id": 123,
"email": "<string>",
"order_number": "<string>",
"source": "<string>",
"amount_in_base": "<string>",
"base_to_currency_rate": "<string>",
"note": "<string>",
"currency_code": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"token": "<string>",
"refundable_amount": "<string>",
"order_status": "<string>",
"fulfillment_status": "<string>",
"financial_status": "<string>",
"warehouse_id": 123,
"points_applied": 123,
"points_applied_amount": 123,
"points_applied_amount_in_currency": "<string>",
"order_total_after_points_redemption": 123,
"total_points_credited": 123,
"free_shipping": true,
"discount_codes": [
"<string>"
],
"created_subscriptions": [
"<string>"
],
"product_discount_codes": [
"<string>"
],
"shipping_discount_codes": [
"<string>"
],
"currency_symbol": "<string>",
"items_count": 123,
"quantity_count": 123,
"external_id": "<string>",
"customer_points_balance": 123,
"order_on_behalf_of": true,
"digital_only": true,
"enrollment_token": "<string>",
"shipping_total": "<string>",
"shipping_total_for_display": "<string>",
"company_logo_url": "<string>",
"primary_domain_hostname": "<string>",
"company_subdomain": "<string>",
"shipping": "<string>",
"transaction_fee": "<string>",
"transaction_fee_in_currency": "<string>",
"subtotal": "<string>",
"sub_total": "<string>",
"tax": "<string>",
"discount": "<string>",
"customer": "<string>",
"total": "<string>",
"subtotal_after_discounts": "<string>",
"total_in_currency": "<string>",
"tax_in_currency": "<string>",
"discount_in_currency": "<string>",
"sub_total_in_currency": "<string>",
"totals": {
"gross_subtotal": "<string>",
"gross_subtotal_in_currency": "<string>",
"net_subtotal": "<string>",
"net_subtotal_in_currency": "<string>",
"item_tax": "<string>",
"item_tax_in_currency": "<string>",
"shipping_net": "<string>",
"shipping_net_in_currency": "<string>",
"shipping_tax": "<string>",
"shipping_tax_in_currency": "<string>",
"total_tax": "<string>",
"total_tax_in_currency": "<string>",
"price_inclusive_of_tax": true,
"tax_label": "<string>"
},
"payment_status": "<string>",
"delivery_status": "<string>",
"delivery_method": "<string>",
"channel": "<string>",
"tags": "<string>",
"delivery_date": "<string>",
"current_adjustment_total": "<string>",
"current_subtotal": "<string>",
"current_discount": "<string>",
"current_tax": "<string>",
"current_shipping": "<string>",
"current_amount": "<string>",
"current_cv": "<string>",
"current_qv": "<string>",
"price_inclusive_of_tax": true,
"price_inclusive_tax_name": "<string>",
"amount": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"order_confirmation_url": "<string>",
"order_type": "<string>",
"phone": "<string>",
"status": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"recurring": [
{
"subtotal": "<string>",
"subtotal_in_currency": "<string>",
"interval": 123,
"interval_unit": "<string>",
"subtotal_for_display": "<string>",
"start_date": "<string>"
}
],
"metadata": {},
"volume_rep": {
"id": 123,
"email": "<string>",
"full_name": "<string>",
"image_url": "<string>"
},
"payment_details": {
"source": "<string>",
"payment_type": "<string>",
"payment_title": "<string>",
"details": {
"card_network": "<string>",
"card_brand": "<string>",
"last_four": "<string>",
"exp_month": "<string>",
"exp_year": "<string>",
"paypal_id": "<string>",
"status": "<string>",
"currency": "<string>",
"amount": "<string>",
"affirm_id": "<string>",
"checkout_id": "<string>",
"created": "<string>",
"auth_expiration": "<string>",
"transaction_id": "<string>",
"authorization_token": "<string>",
"session_id": "<string>",
"intent": "<string>",
"payment_method_id": 123,
"logo_url": "<string>"
}
},
"shipping_in_currency": {
"amount_in_currency": "<string>",
"surcharge_in_currency": "<string>"
},
"enrollment_pack": {
"enrollment_pack_id": 123,
"slug": "<string>",
"token": "<string>",
"title": "<string>",
"description": "<string>",
"enrollment_fee": "<string>",
"additional_volume": 123,
"canonical_url": "<string>",
"enrollment_fee_in_currency": "<string>",
"price": "<string>",
"price_in_currency": "<string>",
"subscription_price": "<string>",
"subscription_price_in_currency": "<string>",
"images": [
{
"id": 123,
"external_id": "<string>",
"image_path": "<string>",
"image_url": "<string>",
"image_url_i18n": {},
"position": 123,
"relateable_id": 123,
"relateable_type": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"uuid_v7": "<string>"
}
],
"items": [
{
"id": 123,
"title": "<string>",
"quantity": 123,
"price": "<string>",
"tax": "<string>",
"cv": "<string>",
"qv": "<string>",
"enrollment_pack_id": 123,
"subscription": true,
"display_to_customer": true,
"cv_total": "<string>",
"qv_total": "<string>",
"total": "<string>",
"metadata": {},
"price_in_currency": "<string>",
"tax_in_currency": "<string>",
"cv_in_currency": "<string>",
"qv_in_currency": "<string>",
"total_in_currency": "<string>",
"total_after_discounts_in_currency": "<string>",
"line_total_in_currency": "<string>",
"line_total_after_discounts_in_currency": "<string>",
"unit_price_display_authoritative": true,
"allow_subscription": true,
"total_after_discounts": "<string>",
"enrollment": true,
"subscription_plan_id": 123,
"subscription_plans": [
{
"id": 123,
"name": "<string>",
"billing_interval": 123,
"billing_interval_unit": "<string>",
"billing_interval_unit_identifier": "<string>",
"billing_frequency_in_words": "<string>",
"shipping_interval": 123,
"shipping_interval_unit": "<string>",
"volume_interval": 123,
"volume_interval_unit": "<string>",
"trial_period": 123,
"trial_period_unit": "<string>",
"split_volume": true,
"allow_max_billing_cycles": true,
"max_billing_cycles": 123,
"savings_display_mode": "<string>",
"company_default": true,
"products_count": 123,
"subscribers_count": 123,
"price": "<string>",
"price_in_currency": "<string>",
"subscription_start": "2023-11-07T05:31:56Z",
"subscribe_and_save": "<string>",
"subscribe_and_save_in_currency": "<string>",
"subscribe_and_save_for_display": "<string>",
"savings_label": "<string>"
}
],
"subscription_only": true,
"subscription_interval": 123,
"subscription_interval_unit": "<string>",
"subscription_interval_unit_identifier": "<string>",
"subscription_price": "<string>",
"subscription_price_in_currency": "<string>",
"subscription_start": "<string>",
"subscribe_and_save": "<string>",
"subscribe_and_save_in_currency": "<string>",
"subscribe_and_save_for_display": "<string>",
"errors": [
{}
],
"creditable_points": 123,
"product_title": "<string>"
}
]
},
"shipping_method": {
"id": 123,
"title": "<string>",
"delivery_time_estimate": "<string>"
},
"shipping_address": {
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"subdivision_code": "<string>",
"phone": "<string>"
},
"billing_address": {
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"subdivision_code": "<string>",
"phone": "<string>"
},
"ship_to": {
"id": 123,
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"subdivision_code": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"country_num_code": 123,
"phone": "<string>",
"default": true
},
"bill_to": {
"id": 123,
"name": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"city": "<string>",
"state": "<string>",
"subdivision_code": "<string>",
"postal_code": "<string>",
"country_code": "<string>",
"country_num_code": 123,
"phone": "<string>",
"default": true
},
"company": {
"id": 123,
"name": "<string>",
"favicon_url": "<string>",
"primary_domain_hostname": "<string>",
"subdomain": "<string>",
"logo_url": "<string>",
"fluid_shop": "<string>",
"collect_phone": true,
"require_phone": true,
"require_billing_zip": true,
"checkout_primary_button_color": "<string>",
"checkout_primary_text_color": "<string>",
"checkout_secondary_button_color": "<string>",
"checkout_secondary_text_color": "<string>",
"order_on_behalf": true,
"reward_points_enabled": true,
"reward_points_apply_to_subtotal": true,
"reward_points_label_singular": "<string>",
"reward_points_label_plural": "<string>",
"collect_sms_marketing": true,
"collect_email_marketing": true,
"bundle_subscriptions": true,
"isolated_payment_tokens": true,
"kount_environment": "<string>",
"kount_client_id": "<string>"
},
"country": {
"id": 123,
"name": "<string>",
"iso": "<string>",
"iso_name": "<string>",
"iso3": "<string>",
"currency_code": "<string>",
"currency_symbol": "<string>",
"province_required": true,
"tax_enabled": true,
"price_inclusive_of_tax": true,
"price_inclusive_tax_name": "<string>",
"tax_standard_rate": 123
},
"warehouse": {
"id": 123,
"name": "<string>",
"active": true,
"external_id": "<string>",
"metadata": {}
},
"items": [
{
"id": 123,
"title": "<string>",
"quantity": 123,
"price": "<string>",
"total": "<string>",
"image_url": "<string>",
"variant_id": 123,
"tax": "<string>",
"cv": "<string>",
"qv": "<string>",
"enrollment_pack_id": 123,
"display_to_customer": true,
"discount_amount": "<string>",
"free_item": true,
"price_in_currency": "<string>",
"tax_in_currency": "<string>",
"cv_in_currency": "<string>",
"qv_in_currency": "<string>",
"discount_amount_in_currency": "<string>",
"sku": "<string>",
"display_price": "<string>",
"display_total": "<string>",
"ordered_variant": [
{
"option_type": "<string>",
"value": "<string>"
}
],
"total_after_discounts": "<string>",
"refundable_amount": "<string>",
"bundled_items": [
{}
],
"product": {
"id": 123,
"title": "<string>",
"image_url": "<string>",
"image_path": "<string>",
"cv": "<string>",
"tax": "<string>",
"sku": "<string>",
"metadata": {},
"external_id": "<string>",
"canonical_url": "<string>",
"price": "<string>",
"introduction": "<string>",
"price_in_currency": "<string>",
"tax_in_currency": "<string>",
"cv_in_currency": "<string>",
"metafields": [
{
"id": 123,
"namespace": "<string>",
"key": "<string>",
"value": "<string>",
"value_type": "<string>",
"description": "<string>",
"owner_type": "<string>",
"owner_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"metafield_definition": {
"id": 123,
"company_id": 123,
"namespace": "<string>",
"key": "<string>",
"name": "<string>",
"description": "<string>",
"value_type": "<string>",
"validation_rules": "<string>",
"owner_resource": "<string>",
"pinned": true,
"position": 123,
"locked": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"list_type": true,
"reference_type": true,
"supported_validations": [
"<string>"
],
"validation_description": "<string>",
"category_ids": [
123
]
}
}
],
"product_bundle_groups": [
{
"id": 123,
"title": "<string>",
"description": "<string>",
"group_type": "<string>",
"purpose": "<string>",
"min_selections": 123,
"max_selections": 123,
"selection_type": "<string>",
"pricing_config": {
"pricing_type": "<string>",
"hidden": true,
"fixed_price": "<string>",
"min_price": "<string>",
"country_pricing": [
{
"country_code": "<string>",
"enabled": true,
"price": "<string>",
"wholesale": "<string>",
"subscription_price": "<string>",
"wholesale_subscription_price": "<string>",
"points": "<string>",
"cv": 123,
"qv": 123,
"wholesale_cv": 123,
"wholesale_qv": 123
}
]
},
"allow_subscriptions": true,
"force_subscriptions": true,
"sort_order": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"images": [
{
"id": 123,
"image_url": "<string>",
"image_path": "<string>",
"position": 123,
"dam_asset_code": "<string>"
}
],
"bundle_group_items": [
{
"id": 123,
"quantity": 123,
"sort_order": 123,
"config": {
"price": "<string>",
"pc_price": "<string>",
"resolved_price": "<string>",
"resolved_wholesale_price": "<string>",
"resolved_cv": "<string>",
"resolved_qv": "<string>",
"resolved_wholesale_cv": "<string>",
"resolved_wholesale_qv": "<string>",
"cv": "<string>",
"qv": "<string>",
"pc_cv": "<string>",
"pc_qv": "<string>",
"is_default": true,
"quantity": 123,
"max_quantity": 123,
"allow_subscription": true,
"force_subscription": true,
"has_subscription_plans": true,
"subscription_plans": [
{
"id": 123,
"subscription_price_in_currency": "<string>",
"subscribe_and_save_in_currency": "<string>",
"subscribe_and_save_for_display": "<string>",
"wholesale_subscription_price_in_currency": "<string>",
"wholesale_subscribe_and_save_in_currency": "<string>",
"wholesale_subscribe_and_save_for_display": "<string>"
}
],
"image_url": "<string>",
"available_country_codes": [
"<string>"
],
"country_prices": {}
},
"variant": {
"id": 123,
"title": "<string>",
"display_name": "<string>",
"image_url": "<string>",
"image_path": "<string>",
"sku": "<string>",
"primary_image": "<string>",
"price": "<string>",
"price_in_currency": "<string>",
"currency_code": "<string>",
"options": [
{
"title": "<string>",
"value": "<string>"
}
],
"customer_limit": 123,
"active_variant_countries": [
"<string>"
],
"product": {
"id": 123,
"title": "<string>",
"image_url": "<string>",
"image_path": "<string>",
"cv": "<string>",
"tax": "<string>",
"sku": "<string>",
"metadata": {},
"external_id": "<string>",
"canonical_url": "<string>",
"price": "<string>",
"introduction": "<string>",
"price_in_currency": "<string>",
"tax_in_currency": "<string>",
"cv_in_currency": "<string>"
}
}
}
]
}
]
},
"variant": {
"id": 123,
"title": "<string>",
"display_name": "<string>",
"image_url": "<string>",
"image_path": "<string>",
"sku": "<string>",
"primary_image": "<string>",
"price": "<string>",
"price_in_currency": "<string>",
"currency_code": "<string>",
"options": [
{
"title": "<string>",
"value": "<string>"
}
]
},
"product_title": "<string>",
"variant_title": "<string>",
"variant_image": {
"id": 123,
"external_id": "<string>",
"image_path": "<string>",
"image_url": "<string>",
"image_url_i18n": {},
"position": 123,
"relateable_id": 123,
"relateable_type": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"uuid_v7": "<string>"
},
"subscription": true,
"subscription_interval": 123,
"subscription_interval_unit": "<string>",
"subscribe_and_save": "<string>",
"subscribe_and_save_in_currency": "<string>",
"subscribe_and_save_for_display": "<string>",
"subscription_price_in_currency": "<string>",
"subscription_plan_id": 123
}
],
"activities": [
{
"id": 123,
"user_id": 123,
"relation_type": "<string>",
"relation_id": 123,
"contact_id": 123,
"title": "<string>",
"description": "<string>",
"read_at": "2023-11-07T05:31:56Z",
"slug": "<string>",
"company_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"formatted_description": "<string>"
}
],
"adjustments": [
{
"id": 123,
"amount": "<string>",
"label": "<string>",
"adjustment_type": "<string>",
"description": "<string>",
"source_type": "<string>",
"source_id": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
],
"metafields": [
{
"id": 123,
"namespace": "<string>",
"key": "<string>",
"value": "<string>",
"value_type": "<string>",
"description": "<string>",
"owner_type": "<string>",
"owner_id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"metafield_definition": {
"id": 123,
"company_id": 123,
"namespace": "<string>",
"key": "<string>",
"name": "<string>",
"description": "<string>",
"value_type": "<string>",
"validation_rules": "<string>",
"owner_resource": "<string>",
"pinned": true,
"position": 123,
"locked": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"list_type": true,
"reference_type": true,
"supported_validations": [
"<string>"
],
"validation_description": "<string>",
"category_ids": [
123
]
}
}
],
"tracking_informations": [
{
"id": 123,
"tracking_number": "<string>",
"shipping_carrier": "<string>",
"tracking_url": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"shop_url": "<string>"
}
}{
"error_message": "<string>",
"errors": "<string>",
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}{
"error_message": "<string>",
"errors": "<string>",
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}