> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Orders # Type: Order Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/orders/orders/order-object.md ## Description: An order represents a completed purchase from a buyer. Orders are created through the checkout flow or manually via the Create Order endpoint. The order contains details about purchased items, buyer and recipient information, pricing, tax, shipping, fulfillment status, and payment status. To get the total sum of all discounts applied to an order, use `priceSummary.discount.amount`. ## Schema: ```json Type: Order Object | type: Order Description: An order represents a completed purchase from a buyer. Orders are created through the checkout flow or manually via the Create Order endpoint. The order contains details about purchased items, buyer and recipient information, pricing, tax, shipping, fulfillment status, and payment status. To get the total sum of all discounts applied to an order, use `priceSummary.discount.amount`. - name: id | type: string | description: Order ID. - name: value | type: string | description: - name: number | type: number | description: Order number displayed in the site owner's dashboard (auto-generated). - name: createdDate | type: string | description: Date and time the order was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the order was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. - name: lineItems | type: Array | description: Order line items. - name: id | type: string | description: Line item ID. - name: productName | type: ProductName | description: Item name. + Stores - `product.name` + Bookings - `service.info.name` + Events - `ticket.name` - name: original | type: string | description: __Required.__ Item name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions.md#request-envelope). Min: 1 character. Max: 200 characters. - name: translated | type: string | description: Item name translated into the buyer's language. Min: 1 character. Max: 400 characters. Default: Same as `original`. - name: catalogReference | type: CatalogReference | description: References to the line item's origin catalog. Empty for custom line items. - name: catalogItemId | type: string | description: ID of the item within the catalog it belongs to. - name: appId | type: string | description: ID of the app providing the catalog. You can get your app's ID from its page in the [app dashboard](https://dev.wix.com/dc3/my-apps/). For items from Wix catalogs, the following values always apply: + Wix Stores: `"215238eb-22a5-4c36-9e7b-e7c08025e04e"` + Wix Bookings: `"13d21c63-b5ec-5912-8397-c3a5ddb27a97"` + Wix Restaurants: `"9a5d83fd-8570-482e-81ab-cfa88942ee60"` - name: options | type: Struct | description: Additional item details in `key:value` pairs. Use this optional field for more specificity with item selection. The values of the `options` field differ depending on which catalog is providing the items. For Wix Stores products, learn more about integrating with [Catalog V3](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v3/e-commerce-integration.md) or [Catalog V1](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v1/catalog/e-commerce-integration.md), depending on [the version the site uses](https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-versioning/introduction.md). - name: quantity | type: number | description: Line item quantity. - name: totalDiscount | type: Price | description: Total discount for this line item's entire quantity. - name: amount | type: string | description: Amount. - name: formattedAmount | type: string | description: Amount formatted with currency symbol. - name: descriptionLines | type: Array | description: Line item description lines. Used for display purposes for the cart, checkout and order. - name: name | type: DescriptionLineName | description: Description line name. - name: image | type: Image | description: Line item image. - name: id | type: string | description: WixMedia image ID. - name: url | type: string | description: Image URL. - name: height | type: number | description: Original image height. - name: width | type: number | description: Original image width. - name: altText | type: string | description: Image alt text. - name: filename | type: string | description: Image filename. - name: physicalProperties | type: PhysicalProperties | description: Physical properties of the item. When relevant, contains information such as SKU and item weight. - name: weight | type: number | description: Line item weight. Measurement unit matches the weight unit specified in `weightUnit` in the request. - name: sku | type: string | description: Stock-keeping unit. Learn more about [SKUs](https://www.wix.com/encyclopedia/definition/stock-keeping-unit-sku). - name: shippable | type: boolean | description: Whether this line item is shippable. - name: itemType | type: ItemType | description: Item type. Either a preset type or custom. - name: fulfillerId | type: string | description: Fulfiller ID. Field is empty when the line item is self-fulfilled. To get fulfillment information, pass the order ID to [List Fulfillments For Single Order](https://dev.wix.com/docs/rest/api-reference/wix-e-commerce/order-fulfillments/list-fulfillments-for-single-order.md). - name: refundQuantity | type: number | description: Number of items that were refunded. - name: value | type: number | description: - name: restockQuantity | type: number | description: Number of items restocked. For a per-location breakdown, see `restockLocations`. - name: price | type: Price | description: Line item price after line item discounts for display purposes. - name: priceBeforeDiscounts | type: Price | description: Line item price before line item discounts for display purposes. Defaults to `price` when not provided. - name: totalPriceBeforeTax | type: Price | description: Total price after discounts, and before tax. - name: totalPriceAfterTax | type: Price | description: Total price after all discounts and tax. - name: paymentOption | type: string | description: Type of selected payment option for current item. Default: `FULL_PAYMENT_ONLINE` enum: FULL_PAYMENT_ONLINE, FULL_PAYMENT_OFFLINE, MEMBERSHIP, DEPOSIT_ONLINE, MEMBERSHIP_OFFLINE, MEMBERSHIP_ONLINE_WITH_OFFLINE_REMAINDER - name: taxDetails | type: ItemTaxFullDetails | description: Deprecated. Use `taxInfo` instead. This field will be removed on September 30, 2024. Tax details for this line item. - name: taxableAmount | type: Price | description: Taxable amount of this line item. - name: taxRate | type: string | description: Tax rate percentage, as a decimal numeral between 0 and 1. For example, `"0.13"`. - name: totalTax | type: Price | description: The calculated tax, based on the `taxableAmount` and `taxRate`. - name: taxInfo | type: LineItemTaxInfo | description: Represents all the relevant tax details for a specific line item. - name: taxAmount | type: Price | description: Calculated tax, based on `taxable_amount` and `tax_rate`. - name: taxableAmount | type: Price | description: Amount for which tax is calculated. - name: taxRate | type: string | description: Tax rate %, as a decimal point. - name: taxGroupId | type: string | description: Tax group ID. - name: taxIncludedInPrice | type: boolean | description: Indicates whether the price already includes tax. - name: taxBreakdown | type: Array | description: Tax information for a line item. - name: digitalFile | type: DigitalFile | description: Digital file identifier, relevant only for items with type DIGITAL. - name: fileId | type: string | description: ID of the secure file in media. - name: link | type: string | description: Link will exist after the digital links have been generated on the order. - name: expirationDate | type: string | description: Link expiration time and date. - name: subscriptionInfo | type: SubscriptionInfo | description: Subscription info. - name: id | type: string | description: Subscription ID. - name: cycleNumber | type: number | description: Subscription cycle. For example, if this order is for the 3rd cycle of a subscription, value will be `3`. - name: subscriptionOptionTitle | type: string | description: Subscription option title. For example, `"Monthly coffee Subscription"`. - name: subscriptionOptionDescription | type: string | description: Subscription option description. For example, `"1kg of selected coffee, once a month"`. - name: subscriptionSettings | type: SubscriptionSettings | description: Subscription detailed information. - name: chargesDescription | type: string | description: Description of the charges that will be applied for subscription. - name: priceDescription | type: PriceDescription | description: Additional description for the price. For example, when price is 0 but additional details about the actual price are needed - "Starts at $67". - name: original | type: string | description: __Required.__ Price description in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions.md#request-envelope). - name: translated | type: string | description: Price description translated into the buyer's language. Default: Same as `original`. - name: depositAmount | type: Price | description: Item's price amount to be charged during checkout. Relevant for items with a `paymentOption` value of `"DEPOSIT_ONLINE"`. - name: locations | type: Array | description: Line item locations. The location's total quantity must not exceed the line item quantity. - name: id | type: string | description: Location id in the associated owner app. - name: appId | type: string | description: Location owner app, if not provided then the site business info locations will be used. - name: quantity | type: number | description: Quantity for specific location. - name: name | type: string | description: Location name. - name: lineItemPrice | type: Price | description: Total price **after** catalog discounts and line item discounts. - name: taxableAddress | type: TaxableAddress | description: Address used for tax calculation. - name: priceUndetermined | type: boolean | description: Whether the price is not yet defined, and will be updated after the order is created. Default: `false` - name: extendedFields | type: ExtendedFields | description: Custom extended fields for the line item object. [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md) must be configured in the app dashboard before they can be accessed with API calls. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: modifierGroups | type: Array | description: Modifier groups that were added to the item. - name: id | type: string | description: Modifier group ID. - name: name | type: TranslatableString | description: Modifier group name. - name: modifiers | type: Array | description: List of modifiers in this group. - name: buyerInfo | type: BuyerInfo | description: Buyer information. - name: contactId | type: string | description: Contact ID. Automatically created if one doesn't exist. For more information, see [Contacts API](https://dev.wix.com/docs/api-reference/crm/members-contacts/contacts/contacts/contact-v4/introduction.md). - name: email | type: string | description: Buyer's email address. - name: paymentStatus | type: string | description: Order payment status. enum: UNSPECIFIED, NOT_PAID, PAID, PARTIALLY_REFUNDED, FULLY_REFUNDED, PENDING, PARTIALLY_PAID, PENDING_MERCHANT, CANCELED, DECLINED - name: fulfillmentStatus | type: string | description: Order fulfillment status. enum: NOT_FULFILLED, FULFILLED, PARTIALLY_FULFILLED - name: buyerLanguage | type: string | description: Language for communication with the buyer. Defaults to the site language. For a site that supports multiple languages, this is the language the buyer selected. - name: weightUnit | type: string | description: Weight measurement unit - defaults to site's weight unit. enum: UNSPECIFIED_WEIGHT_UNIT, KG, LB - name: currency | type: string | description: Currency used for the pricing of this order in [ISO-4217](https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes) format. - name: currencyConversionDetails | type: CurrencyConversionDetails | description: Currency conversion details. For use with multi-currency sites. - name: originalCurrency | type: string | description: Currency used for the pricing of this order, in [ISO-4217](https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes) format. This currency is used to calculate the pricing before conversion to the buyer's payment currency. - name: conversionRate | type: string | description: The rate used for converting the original currency to the currency used for payment. - name: taxIncludedInPrices | type: boolean | description: Whether tax is included in line item prices. - name: siteLanguage | type: string | description: Site language in which original values are shown. - name: priceSummary | type: PriceSummary | description: Order price summary. - name: subtotal | type: Price | description: Subtotal of all line items, before discounts and before tax. - name: shipping | type: Price | description: Total shipping price, before discounts and before tax. - name: tax | type: Price | description: Total tax applied to the order. - name: discount | type: Price | description: Total discount amount applied to the order. - name: total | type: Price | description: Order's total price after discounts and tax. - name: totalAdditionalFees | type: Price | description: Total additional fees before tax. - name: billingInfo | type: AddressWithContact | description: Billing address and contact details. - name: address | type: Address | description: Address. - name: country | type: string | description: Two-letter country code in [ISO-3166 alpha-2](https://www.iso.org/obp/ui/#search/code/) format. - name: subdivision | type: string | description: Code for a subdivision (such as state, prefecture, or province) in [ISO 3166-2](https://www.iso.org/standard/72483.html) format. - name: city | type: string | description: City name. - name: postalCode | type: string | description: Postal or zip code. - name: streetAddress | type: StreetAddress | description: Street address. - name: addressLine | type: string | description: Main address line (usually street name and number). - name: addressLine2 | type: string | description: Free text providing more detailed address info. Usually contains apt, suite, floor. - name: geocode | type: AddressLocation | description: Geocode object containing latitude and longitude coordinates. - name: countryFullname | type: string | description: Country's full name. - name: subdivisionFullname | type: string | description: Subdivision full-name. - name: contactDetails | type: FullAddressContactDetails | description: Contact details. - name: firstName | type: string | description: First name. - name: lastName | type: string | description: Last name. - name: phone | type: string | description: Phone number. - name: company | type: string | description: Company name. - name: vatId | type: VatId | description: Tax information (for Brazil only). If ID is provided, `vatId.type` must also be set, `UNSPECIFIED` is not allowed. - name: shippingInfo | type: ShippingInformation | description: Shipping info and selected shipping option details. - name: carrierId | type: string | description: App Def Id of external provider which was a source of shipping info - name: code | type: string | description: Unique code (or ID) of selected shipping option. For example, `"usps_std_overnight"`. - name: title | type: string | description: Shipping option title. For example, `"USPS Standard Overnight Delivery"`, `"Standard"` or `"First-Class Package International"`. - name: logistics | type: DeliveryLogistics | description: Shipping logistics. - name: deliveryTime | type: string | description: Expected delivery time in free text. For example, `"3-5 business days"`. - name: instructions | type: string | description: Instructions for the carrier. For example, `"Please knock on the door. If unanswered, please call contact number."`. - name: deliverByDate | type: string | description: Deprecated - Latest expected delivery date and time in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. - name: deliveryTimeSlot | type: DeliveryTimeSlot | description: Expected delivery time slot with start and end times. - name: cost | type: ShippingPrice | description: Shipping costs. - name: price | type: Price | description: Shipping price for display purposes. - name: totalPriceBeforeTax | type: Price | description: Total price of shipping after discounts (when relevant), and before tax. - name: totalPriceAfterTax | type: Price | description: Shipping price after all discounts (if any exist), and after tax. - name: taxDetails | type: ItemTaxFullDetails | description: Tax details. - name: taxInfo | type: LineItemTaxInfo | description: Represents all the relevant tax details for a shipping. - name: discount | type: Price | description: Shipping discount before tax. - name: region | type: ShippingRegion | description: Shipping region. - name: name | type: string | description: Name of shipping region. For example, `"Metropolitan London"`, or `"Outer Melbourne suburbs"`. - name: buyerNote | type: string | description: [Buyer note](https://support.wix.com/en/article/wix-stores-viewing-buyer-notes) left by the customer. - name: status | type: string | description: Order status. enum: INITIALIZED, APPROVED, CANCELED, PENDING, REJECTED - name: archived | type: boolean | description: Whether order is archived. - name: value | type: boolean | description: - name: taxSummary | type: TaxSummary | description: Tax summary. Deprecated. Use `taxInfo` instead. This field will be removed on September 30, 2024. - name: totalTax | type: Price | description: Total tax. - name: taxInfo | type: OrderTaxInfo | description: Tax information. - name: totalTax | type: Price | description: Calculated tax, added from line items. - name: taxBreakdown | type: Array | description: The summary of the tax breakdown for all the line items. It will hold for each tax name, the aggregated tax amount paid for it and the tax rate. - name: taxName | type: string | description: The name of the tax against which this tax amount was calculated. - name: taxType | type: string | description: The type of tax that was calculated. Depends on the company's nexus settings as well as the jurisdiction's tax laws. - name: jurisdiction | type: string | description: The name of the jurisdiction in which this tax detail applies. - name: jurisdictionType | type: string | description: The type of the jurisdiction in which this tax detail applies (e.g. Country,State,County,City,Special). - name: rate | type: string | description: The rate at which this tax detail was calculated. - name: aggregatedTaxAmount | type: Price | description: The sum of all the tax from line items that calculated by the tax identifiers. - name: taxExempt | type: boolean | description: Whether the order is exempt from tax calculations. Default: `false` - name: appliedDiscounts | type: Array | description: Applied discounts. - name: discountType | type: string | description: enum: GLOBAL, SPECIFIC_ITEMS, SHIPPING - name: lineItemIds | type: Array | description: __Deprecated.__ Use `lineItemDiscounts` instead. IDs of line items the discount applies to. - name: id | type: string | description: Discount ID. - name: lineItemDiscounts | type: Array | description: Line items the discount applies to, including the discount amount for each. - name: id | type: string | description: Line item ID. - name: totalDiscount | type: Price | description: Total discount amount for this line item. - name: activities | type: Array | description: Order activities. - name: id | type: string | description: Activity ID. - name: authorEmail | type: string | description: Activity author's email. - name: createdDate | type: string | description: Activity creation date and time. - name: type | type: string | description: Activity type. enum: ORDER_REFUNDED, ORDER_PLACED, ORDER_PAID, ORDER_FULFILLED, ORDER_NOT_FULFILLED, ORDER_CANCELED, DOWNLOAD_LINK_SENT, TRACKING_NUMBER_ADDED, TRACKING_NUMBER_EDITED, TRACKING_LINK_ADDED, SHIPPING_CONFIRMATION_EMAIL_SENT, INVOICE_ADDED, INVOICE_REMOVED, INVOICE_SENT, FULFILLER_EMAIL_SENT, SHIPPING_ADDRESS_EDITED, EMAIL_EDITED, PICKUP_READY_EMAIL_SENT, CUSTOM_ACTIVITY, MERCHANT_COMMENT, ORDER_PARTIALLY_PAID, DRAFT_ORDER_CHANGES_APPLIED, SAVED_PAYMENT_METHOD, AUTHORIZED_PAYMENT_CREATED, AUTHORIZED_PAYMENT_CAPTURED, AUTHORIZED_PAYMENT_VOIDED, REFUND_INITIATED, PAYMENT_REFUNDED, PAYMENT_REFUND_FAILED, REFUNDED_AS_STORE_CREDIT, PAYMENT_PENDING, PAYMENT_CANCELED, PAYMENT_DECLINED, ORDER_PENDING, ORDER_REJECTED, RECEIPT_CREATED, RECEIPT_SENT, CHARGEBACK_CREATED, CHARGEBACK_REVERSED - name: activityType | type: string | description: Activity type. enum: ORDER_PLACED, ORDER_PAID, ORDER_FULFILLED, ORDER_NOT_FULFILLED, ORDER_CANCELED, DOWNLOAD_LINK_SENT, TRACKING_NUMBER_ADDED, TRACKING_NUMBER_EDITED, TRACKING_LINK_ADDED, SHIPPING_CONFIRMATION_EMAIL_SENT, INVOICE_ADDED, INVOICE_REMOVED, INVOICE_SENT, FULFILLER_EMAIL_SENT, SHIPPING_ADDRESS_EDITED, EMAIL_EDITED, PICKUP_READY_EMAIL_SENT, MERCHANT_COMMENT, ORDER_PARTIALLY_PAID, DRAFT_ORDER_CHANGES_APPLIED, SAVED_PAYMENT_METHOD, AUTHORIZED_PAYMENT_CREATED, AUTHORIZED_PAYMENT_CAPTURED, AUTHORIZED_PAYMENT_VOIDED, REFUND_INITIATED, PAYMENT_REFUNDED, PAYMENT_REFUND_FAILED, REFUNDED_AS_STORE_CREDIT, PAYMENT_PENDING, PAYMENT_CANCELED, PAYMENT_DECLINED, ORDER_PENDING, ORDER_REJECTED, RECEIPT_CREATED, RECEIPT_SENT, CHARGEBACK_CREATED, CHARGEBACK_REVERSED, ORDER_REFUNDED - name: attributionSource | type: string | description: Order attribution source. enum: UNSPECIFIED, FACEBOOK_ADS - name: createdBy | type: CreatedBy | description: ID of the order's initiator. - name: channelInfo | type: ChannelInfo | description: Information about the sales channel that submitted this order. - name: type | type: string | description: Sales channel that submitted the order. When creating an order via the API to record an external order, use the channel type that matches the original source. If no matching type exists, use `OTHER_PLATFORM`. enum: UNSPECIFIED, WEB, POS, EBAY, AMAZON, OTHER_PLATFORM, WIX_APP_STORE, WIX_INVOICES, BACKOFFICE_MERCHANT, WISH, CLASS_PASS, GLOBAL_E, FACEBOOK, ETSY, TIKTOK, FAIRE_COM, PAYPAL_AGENTIC_CHECKOUT, STRIPE_AGENTIC_CHECKOUT - name: externalOrderId | type: string | description: Reference to an order ID from an external system. Relevant when recording orders from external platforms. - name: externalOrderUrl | type: string | description: URL to the order in the external system. Relevant when recording orders from external platforms. - name: seenByAHuman | type: boolean | description: Whether a human has seen the order. Set when an order is clicked on in the dashboard. - name: checkoutId | type: string | description: Checkout ID. - name: customFields | type: Array | description: Custom fields. - name: value | type: Value | description: Custom field value. - name: title | type: string | description: Custom field title. - name: translatedTitle | type: string | description: Translated custom field title. - name: balanceSummary | type: BalanceSummary | description: Balance summary. - name: balance | type: Balance | description: Current amount left to pay. - name: amount | type: string | description: Balance amount. A negative `amount` represents the amount to be refunded. This can happen due to overcharging or the order being modified after a payment has been made. - name: formattedAmount | type: string | description: Amount formatted with currency symbol. - name: paid | type: Price | description: Sum of all approved and successful payments. The value includes payments that have subsequently been fully or partially refunded. - name: refunded | type: Price | description: Sum of all successfully refunded payments. - name: authorized | type: Price | description: Sum of all authorized payments. - name: pendingRefund | type: Price | description: Sum of all pending refund transactions. - name: pending | type: Price | description: Sum of all pending transactions. - name: chargeback | type: Price | description: Sum of all transaction chargebacks. - name: chargebackReversal | type: Price | description: Sum of all chargeback reversals. - name: platformFees | type: Price | description: Total platform fees actually charged across all payments. This reflects amounts collected, which may differ from the expected fees in `order.platformFeeSummary`. - name: totalMinusPlatformFees | type: Price | description: Order total after deducting platform fees. Represents the net amount payable to the merchant. - name: additionalFees | type: Array | description: Additional fees applied to the order. - name: code | type: string | description: Additional fee's unique code for future processing. - name: name | type: string | description: Name of additional fee. - name: price | type: Price | description: Additional fee's price. - name: taxDetails | type: ItemTaxFullDetails | description: Tax details. - name: taxInfo | type: LineItemTaxInfo | description: Represents all the relevant tax details for additional fee. - name: providerAppId | type: string | description: SPI implementer's `appId`. - name: priceBeforeTax | type: Price | description: Additional fee's price before tax. - name: priceAfterTax | type: Price | description: Additional fee's price after tax. - name: id | type: string | description: Additional fee's id. - name: lineItemIds | type: Array | description: Optional - Line items associated with this additional fee. If no `lineItemIds` are provided, the fee will be associated with the whole cart/checkout/order. - name: source | type: string | description: Specifies the entity that added the additional fee. enum: SERVICE_PLUGIN, ITEM, MANUAL, SHIPPING, PLATFORM - name: extendedFields | type: ExtendedFields | description: Custom field data for the order object. [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md) must be configured in the app dashboard before they can be accessed with API calls. - name: purchaseFlowId | type: string | description: Persistent ID that correlates between the various eCommerce elements: cart, checkout, and order. - name: recipientInfo | type: AddressWithContact | description: Final recipient's address and contact details. This field represents who will ultimately receive the order. It may differ from `shippingInfo.logistics.shippingDestination` when: + The chosen shipping option is a pickup point or store pickup, where `shippingDestination` contains the pickup location. + No shipping option is selected. - name: tags | type: Tags | description: Order tags. [Tags](https://dev.wix.com/docs/rest/business-management/tags/introduction.md) are labels attached to entities, allowing for flexible categorization and data management. - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors. - name: tagIds | type: Array | description: List of tag IDs - name: tags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. - name: purchasedDate | type: string | description: Date and time the order was originally purchased in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Used for migration from external systems. - name: businessLocation | type: Location | description: Order location. - name: id | type: string | description: Location ID. Learn more about the [Wix Locations API](https://dev.wix.com/docs/rest/business-management/locations/introduction.md). - name: name | type: string | description: Location name. - name: payAfterFreeTrial | type: PriceSummary | description: Pay after free trial price summary. Price summary that should be paid for subscriptions after free trial period. - name: platformFeeSummary | type: PlatformFeeSummary | description: Summary of platform fees for this order, including totals by charge type and a breakdown of individual fees. - name: total | type: Price | description: Total sum of all platform fees. - name: totalPassOn | type: Price | description: Total amount of platform fees with `PASS_ON` charge type. - name: totalAbsorbed | type: Price | description: Total amount of platform fees with `ABSORBED` charge type. - name: fees | type: Array | description: Specific information about each platform fee. - name: name | type: TranslatableString | description: Platform fee name. - name: amount | type: Price | description: Platform fee amount. - name: lineItemId | type: string | description: ID of the line item the platform fee applies to. - name: chargeType | type: string | description: Platform fee charge type. - name: percentageRate | type: string | description: Percentage rate charged as platform fee. The fee rate percentage expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%. ```