Only this pageAll pages
Powered by GitBook
1 of 58

Integrate with HotWax

Loading...

HotWax Commerce API and Data feeds

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Inventory

Explore API and data feeds within the 'Inventory' documentation.

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Brokering

Explore API and data feeds within the 'Brokering' documentation.

Loading...

Inbound Shipment

Explore API and data feeds within the 'Inbound Shipment' documentation

Loading...

Loading...

Loading...

Loading...

Facility

Explore API and data feeds within the 'Facility' documentation.

Loading...

Loading...

Fulfillment

Explore API and data feeds within the 'Fulfillment' documentation.

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Appeasements

Check API and data feeds within the 'Appeasements' documentation.

Loading...

Miscellaneous

Explore API and data feeds within the 'Miscellaneous' documentation.

Loading...

Journeys

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Sample Files

Loading...

Loading...

Loading...

OMS Release Versions

Loading...

Introduction

Read HotWax Commerce's technical documentation for insights on integrating with ERP, WMS, and POS systems.

HotWax Commerce Technical Documentation is designed to provide a comprehensive understanding of the platform's integration capabilities with systems such as ERP, WMS, and POS, and how to leverage them effectively. This documentation will help navigate through the various aspects of HotWax Commerce OMS, including Journeys, APIs Data Feeds and detailed information on each API, including how to authenticate, make requests, and handle responses.

APIs

APIs allow other systems to interact with different aspects of OMS such as Orders and Inventory. The APIs provide the flexibility to perform operations such as managing inventory and fulfilling orders. The documentation provides detailed information on each API, including how to authenticate, make requests, and handle responses.

Data Feeds

Out-of-the-box data feeds enable integration between systems such as ERP, WMS, POS, and OMS. Whether looking to synchronize inventory, update product, or import/export data, data feeds make it easy to connect HotWax Commerce with other systems. The documentation provides step-by-step instructions on how to use data feeds such as CSVs and Jsons to meet integration requirements.

Journeys

Journeys represent the interactions of multiple APIs and feeds to deliver specific user experiences. The documentation will guide through the various out-of-the-box Journeys available, helping understand how to configure and customize them to meet specific business and integration needs.

Retrieve Orders

This document provides instructions for retrieving comprehensive details of a specific orde

Retrieves of detailed information about specific order within OMS. This functionality is valuable for verifying order status, contents, and associated details based on their unique identifiers. To retrieve the order, send a GET request to the OMS endpoint with query parameters.

Request

End Point https://<instance.name>.hotwax.io/api/<publish_point>/orders/<order_id>

Example: https://demo-oms.hotwax.io/api/<publish_point>/orders/<order_id>

Headers

Content-Type: application/json
Authorization: Bearer <your_token>
Accept: application/json

Parameter Table

Parameter
Description

<order_id>

The unique identifier of the order to retrieve.

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

{
  "id": "",
  "externalId": "",
  "orderName": "",
  "channel": "",
  "channelDesc": "",
  "customerId": "",
  "customerExternalId": "",
  "customerName": "",
  "priority": "",
  "orderDate": "",
  "entryDate": "",
  "expireDate": "",
  "statusId": "",
  "statusDesc": "",
  "productStoreId": "",
  "productStoreName": "",
  "webSiteId": "",
  "webSiteName": "",
  "currencyCode": "",
  "currencyCodeDesc": "",
  "remainingSubTotal": null,
  "grandTotal": null,
  "tags": "",
  "note": "",
  "orderContacts": {
    "email": {
      "id": "",
      "externalId": ""
    }
  },
  "orderIdentifications": [
    {
      "orderIdentificationTypeId": "",
      "orderIdentificationDesc": "",
      "idValue": ""
    }
  ],
  "shipGroup": [
    {
      "facilityId": "",
      "externalId": "",
      "facilityName": "",
      "maySplit": "",
      "shipBy": "",
      "shipAfter": "",
      "carrierPartyId": "",
      "shipmentMethodTypeId": "",
      "carrierPartyName": "",
      "trackingNumber": "",
      "shipFrom": {
        "postalAddress": {
          "id": "",
          "externalId": "",
          "address1": "",
          "address2": "",
          "city": "",
          "stateCode": "",
          "postalCode": "",
          "country": ""
        },
        "email": {
          "id": "",
          "externalId": "",
          "email": ""
        },
        "phoneNumber": {
          "id": "",
          "externalId": "",
          "areaCode": "",
          "contactNumber": ""
        }
      },
      "shipTo": {
        "postalAddress": {
          "id": "",
          "externalId": "",
          "toName": "",
          "address1": "",
          "address2": "",
          "city": "",
          "stateCode": "",
          "postalCode": "",
          "country": ""
        },
        "email": {
          "id": "",
          "externalId": "",
          "email": ""
        },
        "phoneNumber": {
          "id": "",
          "externalId": "",
          "areaCode": "",
          "contactNumber": ""
        }
      },
      "items": [
        {
          "itemSeqId": "",
          "itemExternalId": "",
          "productId": "",
          "sku": "",
          "name": "",
          "status": "",
          "quantity": null,
          "unitPrice": null,
          "unitListPrice": null,
          "itemAdjustments": [
            {
              "id": "",
              "type": "",
              "comments": "",
              "amount": null,
              "sourcePercentage": null
            }
          ]
        }
      ]
    }
  ],
  "orderAdjustments": [
    {
      "id": "",
      "type": "",
      "typeDesc": "",
      "comments": "",
      "amount": null,
      "sourcePercentage": null
    }
  ],
  "orderPaymentPref": [
    {
      "id": "",
      "paymentMethodTypeId": "",
      "paymentMethodTypeDesc": "",
      "paymentMode": "",
      "cardName": "",
      "code": "",
      "maxAmount": null,
      "statusId": "",
      "statusDesc": ""
    }
  ],
  "billTo": {
    "postalAddress": {
      "id": "",
      "externalId": "",
      "toName": "",
      "address1": "",
      "address2": "",
      "city": "",
      "stateCode": "",
      "postalCode": "",
      "country": ""
    },
    "email": {
      "id": "",
      "externalId": "",
      "email": ""
    },
    "phoneNumber": {
      "id": "",
      "externalId": "",
      "areaCode": "",
      "contactNumber": ""
    }
  },
  "billFrom": {
    "id": "",
    "externalId": "",
    "name": "",
    "postalAddress": {
      "id": "",
      "externalId": "",
      "address1": "",
      "address2": "",
      "city": "",
      "stateCode": "",
      "postalCode": "",
      "country": ""
    },
    "email": {
      "id": "",
      "externalId": "",
      "email": ""
    },
    "phoneNumber": {
      "id": "",
      "externalId": "",
      "areaCode": "",
      "contactNumber": ""
    }
  }
}

Parameter Table

Parent Response Parameters

Parameter
Description

id

The unique identifier for the order.

externalId

External system identifier for the order.

orderName

The name or reference number of the order.

channel

Sales channel through which the order was placed.

channelDesc

Description of the sales channel.

customerId

The unique identifier for the customer.

customerExternalId

External system identifier for the customer.

customerName

The name of the customer.

priority

Priority level of the order.

orderDate

The date when the order was placed.

entryDate

The date when the order was entered into the system.

expireDate

The expiration date of the order.

statusId

Current status of the order.

statusDesc

Description of the order status.

productStoreId

Identifier for the product store associated with the order.

productStoreName

Name of the product store.

webSiteId

Identifier for the website associated with the order.

webSiteName

Name of the website.

currencyCode

The currency code for the order.

currencyCodeDesc

Description of the currency code.

remainingSubTotal

The remaining subtotal for the order.

grandTotal

The grand total amount for the order.

tags

Tags associated with the order.

note

Notes associated with the order.

orderContacts

Contact information for the order.

orderIdentifications

Identifications related to the order.

shipGroup

Shipping group details for the order.

orderAdjustments

Adjustments applied to the order.

orderPaymentPref

Payment preferences for the order.

billTo

Billing information for the order.

billFrom

Billing information from the order origin.

Get Orders

This document provides instructions for getting the list of all orders

GET orders API allows retrieval of existing order documents from the OMS. Supports flexible filtering options to fetch orders based on specific criteria such as partyId or statusId.

Additionally, the API supports sorting functionality. By utilizing the sortBy and sortOrder parameters in the URL, data can be arranged based on fields like grandTotal in either ascending or descending order.

Request

End Point https://<instance.name>.hotwax.io/api/<publish_point>/orders

Example: https://demo-oms.hotwax.io/api/<publish_point>/orders

Headers

Authorization: Bearer <your_token>
Accept: application/json

Request Format

{
  "viewIndex": "",
  "viewSize": "1",
  "filters": {
    "partyId": "",
    "partyId_op": "",
    "partyId_ic": ""
  }
}

Parameter Table

Parameter
Description

viewIndex

Index of the view in pagination.

viewSize

Number of records to fetch per page.

filters

Filters to apply for querying specific orders.

Filters Usage

Filters allow users to query orders based on various fields. The structure of the filter includes:

Field: The field to filter by (e.g., externalId, partyId, statusId). Field_op: Operator used for the filter condition (e.g., equals, like, etc.). Field_ic: Ignore case flag (Y for yes, N for no).

Example

{
  "filters": {
    "externalId": "10025",
    "externalId_op": "equals",
    "externalId_ic": "Y"
  }
}

This example will fetch all the orders where externalId is 10025, with case-insensitive matching (ignore case set to Y).

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

{
  "count": "2",
  "docs": [
    {
      "id": "",
      "externalId": "",
      "orderName": "",
      "channel": "",
      "channelDesc": "",
      "customerId": "",
      "customerExternalId": "",
      "customerName": "",
      "priority": "",
      "orderDate": "",
      "entryDate": "",
      "expireDate": "",
      "statusId": "",
      "statusDesc": "",
      "productStoreId": "",
      "productStoreName": "",
      "webSiteId": "",
      "webSiteName": "",
      "currencyCode": "",
      "currencyCodeDesc": "",
      "remainingSubTotal": null,
      "grandTotal": null,
      "tags": "",
      "note": "",
      "orderContacts": {
        "email": {
          "id": "",
          "externalId": ""
        }
      },
      "orderIdentifications": [
        {
          "orderIdentificationTypeId": "",
          "orderIdentificationDesc": "",
          "idValue": ""
        }
      ],
      "shipGroup": [
        {
          "facilityId": "",
          "externalId": "",
          "facilityName": "",
          "maySplit": "",
          "shipBy": "",
          "shipAfter": "",
          "carrierPartyId": "",
          "shipmentMethodTypeId": "",
          "carrierPartyName": "",
          "trackingNumber": "",
          "shipFrom": {
            "postalAddress": {
              "id": "",
              "externalId": "",
              "address1": "",
              "address2": "",
              "city": "",
              "stateCode": "",
              "postalCode": "",
              "country": ""
            },
            "email": {
              "id": "",
              "externalId": "",
              "email": ""
            },
            "phoneNumber": {
              "id": "",
              "externalId": "",
              "areaCode": "",
              "contactNumber": ""
            }
          },
          "shipTo": {
            "postalAddress": {
              "id": "",
              "externalId": "",
              "toName": "",
              "address1": "",
              "address2": "",
              "city": "",
              "stateCode": "",
              "postalCode": "",
              "country": ""
            },
            "email": {
              "id": "",
              "externalId": "",
              "email": ""
            },
            "phoneNumber": {
              "id": "",
              "externalId": "",
              "areaCode": "",
              "contactNumber": ""
            }
          },
          "items": [
            {
              "itemSeqId": "",
              "itemExternalId": "",
              "productId": "",
              "sku": "",
              "name": "",
              "status": "",
              "quantity": null,
              "unitPrice": null,
              "unitListPrice": null,
              "itemAdjustments": [
                {
                  "id": "",
                  "type": "",
                  "comments": "",
                  "amount": null,
                  "sourcePercentage": null
                }
              ]
            }
          ]
        }
      ],
      "orderAdjustments": [
        {
          "id": "",
          "type": "",
          "typeDesc": "",
          "comments": "",
          "amount": null,
          "sourcePercentage": null
        }
      ],
      "orderPaymentPref": [
        {
          "id": "",
          "paymentMethodTypeId": "",
          "paymentMethodTypeDesc": "",
          "paymentMode": "",
          "cardName": "",
          "code": "",
          "maxAmount": null,
          "statusId": "",
          "statusDesc": ""
        }
      ],
      "billTo": {
        "postalAddress": {
          "id": "",
          "externalId": "",
          "toName": "",
          "address1": "",
          "address2": "",
          "city": "",
          "stateCode": "",
          "postalCode": "",
          "country": ""
        },
        "email": {
          "id": "",
          "externalId": "",
          "email": ""
        },
        "phoneNumber": {
          "id": "",
          "externalId": "",
          "areaCode": "",
          "contactNumber": ""
        }
      },
      "billFrom": {
        "id": "",
        "externalId": "",
        "name": "",
        "postalAddress": {
          "id": "",
          "externalId": "",
          "address1": "",
          "address2": "",
          "city": "",
          "stateCode": "",
          "postalCode": "",
          "country": ""
        },
        "email": {
          "id": "",
          "externalId": "",
          "email": ""
        },
        "phoneNumber": {
          "id": "",
          "externalId": "",
          "areaCode": "",
          "contactNumber": ""
        }
      }
    }
  ]
}

Parameter Table

Parameter
Description

id

Unique identifier of the order.

externalId

External identifier of the order.

orderName

Name or identifier of the order.

channel

Sales channel through which the order was placed.

channelDesc

Description of the sales channel.

customerId

ID of the customer associated with the order.

customerExternalId

External ID of the customer.

customerName

Name of the customer.

priority

Priority level of the order.

orderDate

Date and time when the order was created.

entryDate

Date and time when the order was entered into the system.

expireDate

Date and time when the order expires.

statusId

ID indicating the current status of the order.

statusDesc

Description of the current status of the order.

productStoreId

ID of the product store associated with the order.

productStoreName

Name of the product store.

webSiteId

ID of the website associated with the order.

webSiteName

Name of the website.

currencyCode

Currency code used for the order.

currencyCodeDesc

Description of the currency used.

remainingSubTotal

Remaining subtotal amount of the order.

grandTotal

Total amount of the order.

tags

Tags associated with the order.

note

Additional notes or comments related to the order.

orderContacts

Contact information associated with the order (e.g., email).

orderIdentifications

Array of identification details associated with the order (e.g., marketplaces, order IDs).

shipGroup

Array containing shipping group details for the order.

orderAdjustments

Adjustments made to the order (e.g., shipping charges).

orderPaymentPref

Payment preferences for the order (e.g., payment method, status).

billTo

Billing details for the order (e.g., postal address, email, phone).

billFrom

Originating entity details for the order (e.g., company name, address, email, phone).

Find Order

Explore how the Find Order API call offers details about orders present in the system.

Retrieve details a list of orders imported from external systems in your OMS. To find the order, send a GET request to the /solr-query endpoint with appropriate query parameters.

Request

End Point https://<instance.name>.hotwax.io/api/solr-query

Example: https://demo-oms.hotwax.io/api/solr-query

Request Format

Parameter Table

Order Details Table

Order Details Table

Response

Body

Response Parameters Table

Parameter Name
Description
Field Name
Description
Parameter
Description

{
    "json": {
        "params": {
            "q":"*:*",
            "wt":"json",
            "rows":"1"
        },
        "filter":["docType:ORDER","orderTypeId : SALES_ORDER"],
        "sort":"orderDate desc",
        "fields":"orderId,orderName,orderItemSeqId,orderItemTypeId,productId,parentProductName,productName,productTypeId,internalName,productTypeDesc,isPromo,supplierProductId,quantity,unitPrice,unitListPrice,orderItemStatusId,orderItemStatusDesc,orderItemSubTotal,orderItemAssocTypeId,supplierPartyIds,salesRepName,salesChannelEnumId,salesChannelDesc,orderTypeId,productStoreId,productStoreName,orderStatusId,orderStatusDesc,statusSeqId,orderRoles,customerPartyId,customerEmailId,customerPartyName,shipToCountry,shipToState,shipToCity,shippingMethod,supplierPartyId,supplierPartyName,orderDate,orderNotes,orderDateString,estimatedDeliveryDate,autoCancelDate,correspondingPoId,title,facilityId,facilityName,orderGrandTotal,orderSize,lastInventoryCount,categoryHierarchy,workEffortId,workEffortTypeId,currentStatus,workEffortPurposeTypeId,workEffortParentId,priority,workEffortName,description,estimatedStartDate,estimatedCompletionDate,actualStartDate,actualCompletionDate,backOrderedQuantity,orderToReleaseTime,releaseToPickTime,pickToShipTime,partyClassificationGroupIds,currencyUomId,placingPartyName,placingPartyId,primaryProductCategoryNameFacet,priceType,promoCodeIds,orderIdentifications,promisedDatetime,shipmentMethodTypeId"
    }
}

docType

The Type of the document

q

Basic solr query

wt

Format of data returned by api (json/csv)

rows

No of documents returned

sort

Field name and sort order (asc/desc) to sort response

filter

Additional query parameters

fields

List of fields returned in response document

orderId

Unique identifier for the order

orderName

Name or reference given to the order

orderItemSeqId

Sequential ID for the order item

orderItemTypeId

Type of order item (e.g., product, service)

productId

Unique identifier for the product

parentProductName

Name of the parent product (if applicable)

productName

Name of the product

productTypeId

Type of product

internalName

Internal name or code for the product

productTypeDesc

Description of the product type

isPromo

Indicates if the item is part of a promotion

supplierProductId

Supplier's unique identifier for the product

quantity

Quantity ordered

unitPrice

Unit price of the product

unitListPrice

List price of the product

orderItemStatusId

Status of the order item

orderItemStatusDesc

Description of the order item status

orderItemSubTotal

Subtotal for the order item

orderItemAssocTypeId

Type of association between order items

supplierPartyIds

List of supplier party IDs involved in the order

salesRepName

Name of the sales representative

salesChannelEnumId

ID of the sales channel

salesChannelDesc

Description of the sales channel

orderTypeId

Type of order (e.g., sales, purchase)

productStoreId

ID of the product store

productStoreName

Name of the product store

orderStatusId

Status of the order

orderStatusDesc

Description of the order status

statusSeqId

Sequential ID for the order status

orderRoles

Roles associated with the order

customerPartyId

ID of the customer party

customerEmailId

Customer's email address

customerPartyName

Name of the customer party

shipToCountry

Country where the order will be shipped

shipToState

State where the order will be shipped

shipToCity

City where the order will be shipped

shippingMethod

Shipping method used for the order

supplierPartyId

ID of the supplier party

supplierPartyName

Name of the supplier party

orderDate

Date the order was placed

orderNotes

Notes or comments associated with the order

orderDateString

Date string representation of the order date

estimatedDeliveryDate

Estimated delivery date

autoCancelDate

Date when the order will be automatically canceled

correspondingPoId

ID of the corresponding purchase order (if applicable)

title

Title or reference given to the order

facilityId

ID of the facility involved in the order

facilityName

Name of the facility

orderGrandTotal

Total amount of the order

orderSize

Size of the order

lastInventoryCount

Last recorded inventory count

categoryHierarchy

Hierarchical structure of product categories

workEffortId

ID of the related work effort

workEffortTypeId

Type of work effort

currentStatus

Current status of the work effort

workEffortPurposeTypeId

Purpose of the work effort

workEffortParentId

ID of the parent work effort (if applicable)

priority

Priority of the work effort

workEffortName

Name of the work effort

description

Description of the work effort

estimatedStartDate

Estimated start date of the work effort

estimatedCompletionDate

Estimated completion date of the work effort

actualStartDate

Actual start date of the work effort

actualCompletionDate

Actual completion date of the work effort

backOrderedQuantity

Quantity of backordered items

orderToReleaseTime

Time taken from order placement to release

releaseToPickTime

Time taken from release to picking

pickToShipTime

Time taken from picking to shipping

partyClassificationGroupIds

IDs of the party classification groups

currencyUomId

ID of the currency unit of measurement

placingPartyName

Name of the party placing the order

placingPartyId

ID of the party placing the order

primaryProductCategoryNameFacet

Primary category name facet

priceType

Type of pricing (e.g., retail, wholesale)

promoCodeIds

IDs of applied promo codes

orderIdentifications

List of order identification codes

promisedDatetime

Promised date and time for delivery

shipmentMethodTypeId

ID of the shipment method type

{
    "responseHeader": {
        "zkConnected": true,
        "status": 0,
        "QTime": 0,
        "params": {
            "json": "{\"filter\":[\"docType:ORDER\",\"orderTypeId : SALES_ORDER\"],\"sort\":\"orderDate desc\",\"params\":{\"q\":\"*:*\",\"wt\":\"json\",\"rows\":\"1\"},\"fields\":\"orderId,orderName,orderItemSeqId,orderItemTypeId,productId,parentProductName,productName,productTypeId,internalName,productTypeDesc,isPromo,supplierProductId,quantity,unitPrice,unitListPrice,orderItemStatusId,orderItemStatusDesc,orderItemSubTotal,orderItemAssocTypeId,supplierPartyIds,salesRepName,salesChannelEnumId,salesChannelDesc,orderTypeId,productStoreId,productStoreName,orderStatusId,orderStatusDesc,statusSeqId,orderRoles,customerPartyId,customerEmailId,customerPartyName,shipToCountry,shipToState,shipToCity,shippingMethod,supplierPartyId,supplierPartyName,orderDate,orderNotes,orderDateString,estimatedDeliveryDate,autoCancelDate,correspondingPoId,title,facilityId,facilityName,orderGrandTotal,orderSize,lastInventoryCount,categoryHierarchy,workEffortId,workEffortTypeId,currentStatus,workEffortPurposeTypeId,workEffortParentId,priority,workEffortName,description,estimatedStartDate,estimatedCompletionDate,actualStartDate,actualCompletionDate,backOrderedQuantity,orderToReleaseTime,releaseToPickTime,pickToShipTime,partyClassificationGroupIds,currencyUomId,placingPartyName,placingPartyId,primaryProductCategoryNameFacet,priceType,promoCodeIds,orderIdentifications,promisedDatetime,shipmentMethodTypeId\"}",
            "_forwardedCount": "1"
        }
    },
    "response": {
        "numFound": 4189,
        "start": 0,
        "numFoundExact": true,
        "docs": [
            {
                "orderId": "10280",
                "orderItemSeqId": "00101",
                "productId": "10071",
                "parentProductName": "Ajax Full-Zip Sweatshirt",
                "internalName": "MH12-XS-Blue",
                "productName": "XS / Blue",
                "orderItemStatusId": "ITEM_APPROVED",
                "orderItemStatusDesc": "Approved",
                "quantity": 1.0,
                "orderName": "HCDEV#2511",
                "orderTypeId": "SALES_ORDER",
                "productStoreId": "STORE",
                "productStoreName": "Dev Store",
                "shippingMethod": [
                    "Default Standard"
                ],
                "shipmentMethodTypeId": "STANDARD",
                "facilityId": "GARDEN_CITY",
                "facilityName": "Garden City",
                "orderStatusId": "ORDER_APPROVED",
                "orderStatusDesc": "Approved",
                "orderDate": "2024-06-20T14:42:33Z",
                "orderNotes": [
                    "HC_PRE_SELECTED_FAC"
                ],
                "customerEmailId": "random@random.com",
                "customerPartyId": "10021",
                "customerPartyName": "Rohan Sharma",
                "salesChannelEnumId": "WEB_SALES_CHANNEL",
                "salesChannelDesc": "Web Channel",
                "placingPartyName": "Rohan Sharma",
                "orderIdentifications": [
                    "SHOPIFY_ORD_ID/6178678210724",
                    "SHOPIFY_ORD_NAME/HCDEV#2511",
                    "SHOPIFY_ORD_NO/2511"
                ]
            }
        ]
    }
}

numFound

Total number of documents found matching the search criteria

start

Starting index of the returned documents

numFoundExact

Indicates whether the numFound value is exact or an estimate

Created Orders

Discover how the created order feed JSON assists external systems in tracking and consuming new orders entering the OMS.

Introduction

The Created Orders feed is an order-wise JSON-formatted feed generated from HotWax Commerce OMS. This feed contains details about created order in OMS, which can be approved in OMS based on certain configurable checks. The feed can be used for integration with other external systems.

Use case

Communication with the External System

The Created Order Items feed is a valuable resource for retailers using NetSuite ERP. NetSuite's workflow requires order creation as a prerequisite for other order-related operations. By exporting created orders from the OMS and transforming them into the desired NetSuite format, retailers can integrate these orders into NetSuite for subsequent processing.

Customization

The Created Orders feed has certain out-of-the-box customizations that allow users to generate the feed as per the requirements.The created order feed JSON helps external systems track new orders that are entering the OMS and consume them for their linked actions.

Here is a sample feed of that the created order feed looks like

{
  "orders": [
    {
      "id": "#test02",
      "channel_type": "web",
      "external_id": 3409,
      "currency": "USD",
      "subtotal": 45.00,
      "tax_total": 5.85,
      "placed_at": "2023-07-08T12:08:34.000Z",
      "shipping_tax_code": "AVATAX",
      "shipping_service_level": "STANDARD_UPS",
      "shipping_total": 0.00,
      "discounts": [],
      "discount_total": 30,
      "channel": "BDC",
      "customer_id": 5320856,
      "customer_email":"appurva.jain@hotwax.co",
      "payment_account": {
        "payment_method": "credit_card",
        "payment_provider": "shopify",
        "amount":"45.00"
      },
      "billing_address": {
        "name": "Appurva Jain",
        "address_line_1": "175 S Main St Suite",
        "address_line_2": "",
        "city": "Salt Lake City",
        "state": "UT",
        "country": "US",
        "zip_code": "84111",
        "phone": "18006984637"
      },
      "shipping_address": {
        "name": "Appurva Jain",
        "address_line_1": "175 S Main St Suite 1310123",
        "address_line_2": "",
        "city": "Salt Lake City",
        "state": "UT",
        "country": "US",
        "zip_code": "84111",
        "phone": "18006984637"
      },
      "items": [
        {
          "id": 101,
          "external_id": "",
          "product_id": "1110352-010-L",
          "pricebook_price": 45.00,
          "quantity": 1,
          "tax": 5.85,
          "tax_code": "AVATAX",
          "tag": "",
          "closed": "",
          "discounts": [],
          "shipping_service_level": "STANDARD_UPS",
          "item_discounts":0.0,
          "order_discounts":0.0,
          "status":"opened",
          "extended_attributes": [
            {
                "name":"requires_shipping",
                "value":"True"
            }
          ]
        }
      ]
    }
  ]
}

Reset Inventory

Learn how to sync inventory from an external reference source to HotWax Commerce with the 'Reset Inventory' feature.

Syncs inventory from an external reference source to HotWax. After receiving the inventory file in CSV format, HotWax Commerce calculates the difference in inventory and matches its inventory levels exactly with CSV. CSV files can be imported in HotWax by two methods: using the EXIM menu in HotWax or saving the file at a designated SFTP location for HotWax to automatically download and process.

Sample path for SFTP method: /home/<host_name>-sftp/staging/incoming

CSV example

Here's an example of the CSV file format:

facilityId
locationSeqId
idType
idValue
availableQty

DEMO_HC_STORE_1

TLTLTLLL01

sku

WH09-XL-Green

20

Parameters

The Reset Inventory API accepts the following parameters:

Parameters
Description
Required

facilityId

HotWax Commerce internal facility Id. Generally the same as the facility Id in Shopify.

Yes

locationSeqId

The Id of the designated location in a facility in HotWax Commerce.

Yes

idType

The type of the unique product identifier in the external reference source. Default is shopifyProductId

No

idValue

The value of the product idType in the external reference source.

Yes

availableQty

The available quantity of the product in the external reference source. This number will overwrite the current ATP level of the product in HotWax Commerce.

Yes

externalFacilityId

The Id of the facility in an external reference source.

No

productId

The internal Id of a product in HotWax Commerce.

No

comments

Optional field to store additional information.

No

Note: sku upca and shopifyProductId are commonly used product Identifiers.

Order Adjustments

Learn how order adjustments categorize various order-level charges for streamlined management.

Order adjustments provide a flexible way to categorize various order-level charges. By storing adjustments as distinct types, rather than including them directly in the order header, they can be easily adapted to meet the specific requirements of custom implementations and integrations.

Native adjustments

Order Adjustment Type
Parent Type
Description

ADDITIONAL_FEATURE

-

Additional Feature

CGST

GST_TAX

Central Goods and Services Tax

DEPOSIT_ADJUSTMENT

-

Deposit

DEPOSIT_REFUND

-

Deposit Refund

DISCOUNT_ADJUSTMENT

-

Discount

DONATION_ADJUSTMENT

-

Donation

DUTY

-

Duty

EXT_PROMO_ADJUSTMENT

-

External promotion adjustment

EXT_SHIP_ADJUSTMENT

-

External shipping adjustment

FEE

-

Fee

GST_TAX

-

Goods and Services Tax

IGST

GST_TAX

Integrated Goods and Services Tax

MISCELLANEOUS_CHARGE

-

Miscellaneous Charge

MKTG_PKG_AUTO_ADJUST

-

Marketing Package Adjustment

OFF_INV_ADJUSTMENT

DISCOUNT_ADJUSTMENT

Off Invoice Adjustment

PROMOTION_ADJUSTMENT

-

Promotion

PYMNT_PROCESS_FEE

FEE

Payment Processing Fee

REPLACE_ADJUSTMENT

-

Replacement

SALES_TAX

-

Sales Tax

SGST

GST_TAX

State Goods and Services Tax

SHIPPING_CHARGES

-

S&H

SHIPPING_SALES_TAX

-

S&H Tax

SURCHARGE_ADJUSTMENT

-

Surcharge

UTGST

GST_TAX

Union Territories State Goods and Services Tax

VAT_PRICE_CORRECT

-

VAT Price Correction

VAT_TAX

-

VAT Tax

WARRANTY_ADJUSTMENT

-

Warranty

Post Code Lookup

Discover how the Post Code Lookup API fetches information related to postal codes, aiding developers in various applications.

The Post Code Lookup API provides developers with the ability to fetch information related to postal codes. This API offers three main functionalities:

  • Fetching postal codes for a given latitude and longitude within a specified range

  • Fetching latitude and longitude for a given postal code

  • Fetching latitude and longitude for a partial postal code

Fetch Postal Code for Latitude Longitude in a Given Range

Fetches the postal code for a specific location based on its latitude and longitude. The API can also return postal codes for locations within a specified distance range from the provided latitude and longitude. To get the postal code, you will need to call /postcodeLookup endpoint with the POST method.

Request

Endpoint

https://<host>/api/postcodeLookup

Header

Content-Type:​ application/json

Body

{
  "json": {
    "params": {
      "q": "*:*",
      "fq": "{!geofilt sfield=location}",
      "pt": "18.180555,-66.749961",
      "d": "10"
    }
  }
}
Parameter
Description
Required (Y/N)

q

The query parameter

N

fq

Applies a filter to the query search results

N

pt

The latitude and longitude of the location

N

d

The distance from which postal code needs to be fetched

N

Note:

  • pt and d parameters are required to get the post codes

  • d = 0 will fetch exact post code value for passed latitude and longitude

  • d > 0 will fetch post codes within the given distance

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

{
  "responseHeader": {
    "status": 0,
    "QTime": 2,
    "params": {
      "json": "{\"params\":{\"q\":\"*:*\",\"fq\":\"{!geofilt-sfield=location}\",\"pt\":\"18.180555,-66.749961\",\"d\":\"10\"}}"
    }
  },
  "response": {
    "numFound": 1,
    "start": 0,
    "numFoundExact": true,
    "docs": [
      {
        "postcode": "601",
        "latitude": "18.180555",
        "longitude": "-66.749961",
        "country": "USA",
        "country-code-id": "601-USA",
        "location": "18.180555,-66.749961",
        "_version_": 1752733513051799552
      }
    ]
  }
}
Parameter
Description

numfound

The number of results found

postcode

The postal code for the provided latitude and longitude

latitude

The latitude of the postal code

longitude

The longitude of the postal code

country

The country of the provided postal code

country-code-ID

The country code ID of the provided country

location

The latitude and longitude points of the postal code

Fetch latitude longitude for a postal code

Fetches the latitude longitude for a specific postal code. To look up the latitude longitude you will need to call the endpoint with the POST method.

Request

Endpoint

https://<host>/api/postcodeLookup

Header

Content-Type:​ application/json

Body

{
  "json": {
    "query": "postcode:2635"
  }
}
Parameter
Description
Required (Y/N)

postcode

The postal code

Y

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

{
 "responseHeader": {
   "status": 0,
   "QTime": 1,
   "params": {
     "json": "{\"query\":\"postcode:2635\"}"
   }
 },
 "response": {
   "numFound": 1,
   "start": 0,
   "numFoundExact": true,
   "docs": [
     {
       "postcode": "2635",
       "latitude": "41.624054",
       "longitude": "-70.439397",
       "country": "USA",
       "country-code-id": "2635-USA",
       "location": "41.624054,-70.439397",
       "_version_": 1752733516719718400
     }
   ]
 }
}
Parameter
Description

postcode

The postal code for the provided latitude and longitude

latitude

The latitude of the postal code

longitude

The longitude of the postal code

country

The country of the provided postal code

country-code-ID

The country code ID of the provided country

location

The latitude and longitude points of the postal code

Fetch latitude longitude for a partial postal code

Fetches the latitude longitude for a partial postal code. This API fetches all the latitude and longitude matching the partial postal code. To look up the latitude longitude for a partial postal code you will need to call the endpoint with the POST method.

Request

Endpoint

https://<host>/api/postcodeLookup

Header

Content-Type:​ application/json

Body

{
  "json": {
    "query": "postcodelike:6011",
    "fields": ["latitude", "longitude"]
  }
}
Parameter
Description
Required (Y/N)

postcodelike

The partial postal code

Y

fields

The data fields or attributes that are included in the response body of the API call

Y

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

"response": {
 "numFound": 2,
 "start": 0,
 "numFoundExact": true,
 "docs": [
   {
     "latitude": "40.130099",
     "longitude": "-85.760763"
   },
   {
     "latitude": "32.754272",
     "longitude": "-97.083196"
   }
 ]
}
Parameter
Description

latitude

The latitude of the postal code

longitude

The longitude of the postal code

Authentication

Learn about authentication requirements for secure transactions on HotWax's platform. Ensure safe API requests effortlessly.

To ensure secure transactions on HotWax's platform, all applications connecting with the HotWax API require authentication when making API requests. The primary method of authentication employed is Bearer token authentication.

Bearer Token Authentication

Bearer token authentication utilizes security tokens. After a successful login request, the server generates a secret string known as a bearer token. When making requests for protected resources, the user must include the token in the authorization header.

How to generate a bearer token?

Hotwax Commerce relies on robust security features provided by JWT (JSON Web Token) to ensure a safe and trustworthy API communication environment. This mechanism guarantees user authenticity, authorizes their actions, and maintains data integrity through digital signatures. To create JWT, follow these steps:

  1. Make sure that Reset Password on Login is unchecked.

  2. Navigate to the Hamburger menu in OMS: https://{instanceName}.hotwax.io/

  3. Access the Settings option and choose Create JWT Token.

  4. Input the user ID.It will display only the users having integration permissions.

  5. Token Configuration:**

    • Define the validation period.

    • Specify the purpose of the token.

  6. Click Create, and the resulting JWT token will be displayed in the dedicated section.

  7. Copy Token and use it to build connection

Authentication Endpoint

Sample endpoint: https://<host_name>.hotwax.io/<api_name>/login

APIs Requiring Authentication

The following HotWax APIs require an authentication token:

  1. updateInventory

Create a unique user from by using integration template or assign the integration permissions.

For more information about Bearer token authentication, refer to this .

Brokered Order Items Feed

Discover the Brokered Order Items feed, a JSON-formatted feed generated from HotWax Commerce OMS for streamlined order management.

Introduction

The Brokered Order Items feed is an order-wise JSON-formatted feed generated from HotWax Commerce OMS. This feed contains details about brokered order items, which can be brokered to either Warehouse or Store Type facilities. The feed can be used for integration with other external systems.

Use case

Communication with the External Order fulfillment system

The Brokered Order Items feed is useful for retailers who would like to do fulfillment outside OMS through an external system such as a Warehouse Management System (WMS). This feed provides the out-of-the-box data available from OMS, and retailers can use it as is or after transformation to ingest into external systems through file-based integration.

Customization

The Brokered Order Items feed has certain out-of-the-box customizations that allow users to generate the feed as per the requirements.

Parameter

Description

orderId

Allows to generate the feed for a specific order ID.

orderItemSeqId

Allows to generate the feed for a specific order item sequence ID within an order.

parentFacilityTypeIds

Specifies the type of facility from which the brokered order items are being fetched.

productStoreIds

Allows you to set the product store IDs to generate brand-specific feeds.

systemMessageTypeId

The SFTP path where the feed will be stored.

systemMessageRemoteId

The SFTP credentials required to access the SFTP location.

Sample Brokered Order Items feed
[ {
  "productStoreId" : "SG_STORE",
  "orderId" : "SGSM10007",
  "orderName" : "#1068",
  "orderDate" : "2020-01-15T11:26:03-08:00",
  "orderStatusId" : "ORDER_APPROVED",
  "entryDate" : "2020-01-17T12:31:57-08:00",
  "orderExternalId" : null,
  "currency" : "USD",
  "grandTotal" : 104,
  "orderItemSeqId" : null,
  "itemStatusId" : null,
  "orderItemQuantity" : null,
  "reservedItemQuantity" : null,
  "reservedDatetime" : null,
  "unitPrice" : null,
  "orderItemExternalId" : null,
  "itemDescription" : null,
  "requestedDeliveryDate" : null,
  "requestedDeliveryTime" : null,
  "deliveryWindow" : null,
  "shipGroupSeqId" : null,
  "shipmentMethodTypeId" : null,
  "postalContactMechId" : null,
  "telecomContactMechId" : null,
  "orderFacilityId" : null,
  "carrierPartyId" : null,
  "externalFulfillmentOrderItemId" : null,
  "fulfillmentStatus" : null,
  "customerFirstName" : "Demo",
  "customerLastName" : "User",
  "facilityId" : null,
  "facilityExternalId" : null,
  "facilityTypeId" : null,
  "parentFacilityTypeId" : null,
  "statusDatetime" : null,
  "productId" : null,
  "productTypeId" : null,
  "internalName" : null,
  "salesChannel" : "WEB_CHANNEL",
  "customerPartyId" : "10004",
  "isShippingChargesSent" : "Y",
  "billTo" : {
    "countryGeoCode" : "US",
    "stateProvinceGeoCode" : "TN",
    "contactMechId" : "10802",
    "toName" : "demo user",
    "attnName" : null,
    "address1" : "11 U.S. 11",
    "address2" : null,
    "houseNumber" : null,
    "houseNumberExt" : null,
    "directions" : null,
    "city" : "Knoxville",
    "cityGeoId" : null,
    "postalCode" : "37010",
    "postalCodeExt" : null,
    "countryGeoId" : "USA",
    "stateProvinceGeoId" : "TN",
    "countyGeoId" : null,
    "municipalityGeoId" : null,
    "postalCodeGeoId" : null,
    "geoPointId" : null,
    "encodedAddressKey" : null,
    "latitude" : null,
    "longitude" : null,
    "isResidentialAddress" : "Y",
    "phone" : null
  },
  "orderIdentifications" : [ {
    "orderId" : "SGSM10007",
    "idValue" : "2035556286557",
    "fromDate" : "2020-01-17T12:31:58-08:00",
    "lastUpdatedStamp" : "2020-01-17T12:31:58-08:00",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_ID",
    "thruDate" : null
  }, {
    "orderId" : "SGSM10007",
    "fromDate" : "2020-01-17T12:31:58-08:00",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_NAME",
    "lastUpdatedStamp" : "2020-01-17T12:31:58-08:00",
    "idValue" : "#1068",
    "thruDate" : null
  }, {
    "orderId" : "SGSM10007",
    "fromDate" : "2020-01-17T12:31:58-08:00",
    "idValue" : "68",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_NO",
    "lastUpdatedStamp" : "2020-01-17T12:31:58-08:00",
    "thruDate" : null
  } ],
  "customerPartyIdentifications" : [ ],
  "payments" : [ {
    "orderId" : "SGSM10007",
    "paymentMethodCode" : null,
    "paymentMethodDescription" : "Shopify Payment",
    "createdDate" : "2020-01-17T12:31:57-08:00",
    "statusId" : "PAYMENT_SETTLED",
    "returnId" : null,
    "amount" : 104,
    "paymentMethodTypeId" : "EXT_SHOPIFY"
  } ],
  "orderAdjustments" : [ {
    "customerReferenceId" : null,
    "correspondingProductId" : null,
    "orderItemSeqId" : "_NA_",
    "includeInShipping" : null,
    "description" : null,
    "exemptAmount" : null,
    "productPromoId" : null,
    "orderId" : "SGSM10007",
    "taxAuthPartyId" : null,
    "lastModifiedByUserLogin" : null,
    "amount" : 15,
    "oldPercentage" : null,
    "primaryGeoId" : null,
    "taxAuthGeoId" : null,
    "originalAdjustmentId" : null,
    "secondaryGeoId" : null,
    "createdByUserLogin" : null,
    "orderAdjustmentId" : null,
    "amountAlreadyIncluded" : null,
    "lastUpdatedStamp" : null,
    "comments" : null,
    "recurringAmount" : null,
    "lastModifiedDate" : null,
    "sourceReferenceId" : null,
    "productPromoRuleId" : null,
    "isManual" : null,
    "productFeatureId" : null,
    "taxAuthorityRateSeqId" : null,
    "overrideGlAccountId" : null,
    "oldAmountPerQuantity" : null,
    "shipGroupSeqId" : null,
    "includeInTax" : null,
    "createdDate" : null,
    "productPromoActionSeqId" : null,
    "sourcePercentage" : null,
    "orderAdjustmentTypeId" : "SHIPPING_CHARGES"
  } ],
  "orderAttributes" : [ ],
  "orderItems" : [ {
    "productStoreId" : "SG_STORE",
    "orderId" : "SGSM10007",
    "orderName" : "#1068",
    "orderDate" : "2020-01-15T11:26:03-08:00",
    "orderStatusId" : "ORDER_APPROVED",
    "entryDate" : "2020-01-17T12:31:57-08:00",
    "orderExternalId" : null,
    "currency" : "USD",
    "grandTotal" : 104,
    "orderItemSeqId" : "00001",
    "itemStatusId" : "ITEM_APPROVED",
    "orderItemQuantity" : 1,
    "reservedItemQuantity" : null,
    "reservedDatetime" : null,
    "unitPrice" : 89,
    "orderItemExternalId" : "4458969923677",
    "itemDescription" : "BLACK LEATHER / 37 / 17",
    "requestedDeliveryDate" : null,
    "requestedDeliveryTime" : null,
    "deliveryWindow" : null,
    "shipGroupSeqId" : "00001",
    "shipmentMethodTypeId" : "SECOND_DAY",
    "postalContactMechId" : "10800",
    "telecomContactMechId" : null,
    "orderFacilityId" : null,
    "carrierPartyId" : "_NA_",
    "externalFulfillmentOrderItemId" : null,
    "fulfillmentStatus" : null,
    "customerFirstName" : "Demo",
    "customerLastName" : "User",
    "facilityId" : "1",
    "facilityExternalId" : "1",
    "facilityTypeId" : "RETAIL_STORE",
    "parentFacilityTypeId" : "PHYSICAL_STORE",
    "statusDatetime" : "2020-03-19T11:50:29-07:00",
    "productId" : "10609",
    "productTypeId" : "FINISHED_GOOD",
    "internalName" : "14312158756979",
    "salesChannel" : "WEB_CHANNEL",
    "customerPartyId" : "10004",
    "shipTo" : {
      "countryGeoCode" : "US",
      "stateProvinceGeoCode" : "TN",
      "contactMechId" : "10800",
      "toName" : "demo user",
      "attnName" : null,
      "address1" : "11 U.S. 11",
      "address2" : null,
      "houseNumber" : null,
      "houseNumberExt" : null,
      "directions" : null,
      "city" : "Knoxville",
      "cityGeoId" : null,
      "postalCode" : "37010",
      "postalCodeExt" : null,
      "countryGeoId" : "USA",
      "stateProvinceGeoId" : "TN",
      "countyGeoId" : null,
      "municipalityGeoId" : null,
      "postalCodeGeoId" : null,
      "geoPointId" : null,
      "encodedAddressKey" : null,
      "latitude" : null,
      "longitude" : null,
      "isResidentialAddress" : "Y",
      "phone" : null
    },
    "goodIdentifications" : [ {
      "idValue" : "S00CG30",
      "productId" : "10609",
      "lastUpdatedStamp" : "2022-02-04T07:09:25-08:00",
      "fromDate" : "2020-06-01T12:02:00-07:00",
      "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
      "thruDate" : null
    }, {
      "idValue" : "661812039147",
      "fromDate" : "2020-01-17T10:21:16-08:00",
      "goodIdentificationTypeId" : "UPCA",
      "lastUpdatedStamp" : "2022-02-04T07:09:25-08:00",
      "productId" : "10609",
      "thruDate" : null
    } ],
    "orderItemAdjustments" : [ ],
    "orderItemAttributes" : [ ],
    "facilityGroupMembers" : [ {
      "facilityId" : "1",
      "facilityGroupId" : "AUTO_SHIPPING_LABEL",
      "lastUpdatedStamp" : "2021-09-29T01:16:19-07:00",
      "sequenceNum" : 5,
      "fromDate" : "2020-06-25T12:41:21-07:00",
      "thruDate" : null
    }, {
      "facilityId" : "1",
      "facilityGroupId" : "DO_PICKING",
      "lastUpdatedStamp" : "2021-09-29T01:16:19-07:00",
      "fromDate" : "2020-06-25T12:41:21-07:00",
      "sequenceNum" : 5,
      "thruDate" : null
    }, {
      "facilityId" : "1",
      "fromDate" : "2020-06-25T12:41:21-07:00",
      "sequenceNum" : 5,
      "facilityGroupId" : "DO_RATE_SHOP",
      "lastUpdatedStamp" : "2021-09-29T01:16:19-07:00",
      "thruDate" : null
    }, {
      "facilityGroupId" : "OMS_FULFILLMENT",
      "facilityId" : "1",
      "sequenceNum" : 5,
      "fromDate" : "2020-06-25T12:41:21-07:00",
      "thruDate" : null,
      "lastUpdatedStamp" : "2021-09-29T01:16:19-07:00"
    }, {
      "facilityId" : "1",
      "sequenceNum" : null,
      "facilityGroupId" : "SMUS_BROKERING_GROUP",
      "fromDate" : "2023-10-19T08:18:04-07:00",
      "lastUpdatedStamp" : "2023-10-19T08:18:04-07:00",
      "thruDate" : null
    }, {
      "facilityId" : "1",
      "lastUpdatedStamp" : "2023-10-19T08:24:38-07:00",
      "sequenceNum" : null,
      "fromDate" : "2023-10-19T08:24:38-07:00",
      "facilityGroupId" : "SMUS_ST_BRK_GRP",
      "thruDate" : null
    }, {
      "facilityId" : "1",
      "sequenceNum" : null,
      "lastUpdatedStamp" : "2023-11-10T01:18:38-08:00",
      "fromDate" : "2023-11-10T01:18:33-08:00",
      "facilityGroupId" : "SUPERGA_FAC_GRP",
      "thruDate" : null
    }, {
      "facilityGroupId" : "WH_FAC_GROUP",
      "facilityId" : "1",
      "sequenceNum" : null,
      "fromDate" : "2024-01-01T00:00:00-08:00",
      "lastUpdatedStamp" : "2024-01-04T06:50:21-08:00",
      "thruDate" : null
    } ],
    "fromOrderItemAssocs" : [ ],
    "toOrderItemAssocs" : [ ],
    "productFeatures" : [ {
      "amount" : null,
      "productFeatureApplTypeId" : "STANDARD_FEATURE",
      "productFeatureId" : "10015",
      "sequenceNum" : null,
      "recurringAmount" : null,
      "fromDate" : "2020-01-17T10:21:16-08:00",
      "idCode" : null,
      "productFeatureCategoryId" : "10015",
      "contentId" : null,
      "numberSpecified" : null,
      "uomId" : null,
      "thruDate" : null,
      "defaultSequenceNum" : null,
      "description" : "37",
      "defaultAmount" : null,
      "imageUrl" : null,
      "abbrev" : null,
      "productId" : "10609",
      "productFeatureTypeId" : "SIZE"
    }, {
      "amount" : null,
      "productFeatureApplTypeId" : "STANDARD_FEATURE",
      "sequenceNum" : null,
      "recurringAmount" : null,
      "productFeatureId" : "10101",
      "fromDate" : "2020-01-17T10:21:16-08:00",
      "idCode" : null,
      "productFeatureCategoryId" : "10015",
      "contentId" : null,
      "numberSpecified" : null,
      "uomId" : null,
      "description" : "BLACK LEATHER",
      "productFeatureTypeId" : "COLOR",
      "thruDate" : null,
      "defaultSequenceNum" : null,
      "defaultAmount" : null,
      "imageUrl" : null,
      "abbrev" : null,
      "productId" : "10609"
    }, {
      "amount" : null,
      "productFeatureApplTypeId" : "STANDARD_FEATURE",
      "sequenceNum" : null,
      "recurringAmount" : null,
      "productFeatureId" : "10102",
      "fromDate" : "2020-01-17T10:21:16-08:00",
      "idCode" : null,
      "productFeatureCategoryId" : "10015",
      "contentId" : null,
      "numberSpecified" : null,
      "uomId" : null,
      "thruDate" : null,
      "defaultSequenceNum" : null,
      "productFeatureTypeId" : "CODE",
      "defaultAmount" : null,
      "description" : "17",
      "imageUrl" : null,
      "abbrev" : null,
      "productId" : "10609"
    } ]
  } ]
},{
    "productStoreId" : "STORE",
    "orderId" : "KRWE10188",
    "orderName" : "#KREWE37484",
    "orderDate" : "2023-12-07T01:47:49-08:00",
    "orderStatusId" : "ORDER_APPROVED",
    "entryDate" : "2023-12-07T02:09:35-08:00",
    "orderExternalId" : "5499245625544",
    "currency" : "USD",
    "grandTotal" : 390,
    "orderItemSeqId" : null,
    "itemStatusId" : null,
    "orderItemQuantity" : null,
    "reservedItemQuantity" : null,
    "reservedDatetime" : null,
    "unitPrice" : null,
    "orderItemExternalId" : null,
    "itemDescription" : null,
    "requestedDeliveryDate" : null,
    "requestedDeliveryTime" : null,
    "deliveryWindow" : null,
    "shipGroupSeqId" : null,
    "shipmentMethodTypeId" : null,
    "postalContactMechId" : null,
    "telecomContactMechId" : null,
    "orderFacilityId" : null,
    "carrierPartyId" : null,
    "externalFulfillmentOrderItemId" : null,
    "fulfillmentStatus" : null,
    "customerFirstName" : "Dhiraj",
    "customerLastName" : "Nagar",
    "facilityId" : null,
    "facilityExternalId" : null,
    "facilityTypeId" : null,
    "parentFacilityTypeId" : null,
    "statusDatetime" : null,
    "productId" : null,
    "productTypeId" : null,
    "internalName" : null,
    "salesChannel" : "1",
    "customerPartyId" : "10005",
    "isShippingChargesSent" : "N",
    "billTo" : {
      "countryGeoCode" : "US",
      "stateProvinceGeoCode" : "FL",
      "contactMechId" : "10948",
      "toName" : "Dhiraj Nagar",
      "attnName" : null,
      "address1" : "Main St Squre",
      "address2" : "Main St Squre",
      "houseNumber" : null,
      "houseNumberExt" : null,
      "directions" : null,
      "city" : "Miami",
      "cityGeoId" : null,
      "postalCode" : "33172",
      "postalCodeExt" : null,
      "countryGeoId" : "USA",
      "stateProvinceGeoId" : "FL",
      "countyGeoId" : null,
      "municipalityGeoId" : null,
      "postalCodeGeoId" : null,
      "geoPointId" : null,
      "encodedAddressKey" : null,
      "latitude" : null,
      "longitude" : null,
      "isResidentialAddress" : "Y",
      "phone" : {
        "contactMechId" : "10949",
        "countryCode" : null,
        "areaCode" : null,
        "contactNumber" : "08973575538",
        "askForName" : null,
        "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00"
      }
    },
    "orderIdentifications" : [ {
      "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00",
      "fromDate" : "2023-12-07T02:09:35-08:00",
      "orderId" : "KRWE10188",
      "idValue" : "5499245625544",
      "orderIdentificationTypeId" : "SHOPIFY_ORD_ID",
      "thruDate" : null
    }, {
      "fromDate" : "2023-12-07T02:09:35-08:00",
      "orderIdentificationTypeId" : "SHOPIFY_ORD_NAME",
      "orderId" : "KRWE10188",
      "idValue" : "#KREWE37484",
      "thruDate" : null,
      "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00"
    }, {
      "orderIdentificationTypeId" : "SHOPIFY_ORD_NO",
      "fromDate" : "2023-12-07T02:09:35-08:00",
      "idValue" : "36484",
      "orderId" : "KRWE10188",
      "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00",
      "thruDate" : null
    } ],
    "customerPartyIdentifications" : [ {
      "partyId" : "10005",
      "idValue" : "5320857",
      "partyIdentificationTypeId" : "NETSUITE_CUSTOMER_ID",
      "lastUpdatedStamp" : "2023-11-22T10:58:34-08:00"
    }, {
      "partyId" : "10005",
      "lastUpdatedStamp" : "2023-11-22T06:11:12-08:00",
      "partyIdentificationTypeId" : "SHOPIFY_CUST_ID",
      "idValue" : "6838392979656"
    } ],
    "payments" : [ {
      "paymentMethodCode" : null,
      "createdDate" : "2023-12-07T02:09:35-08:00",
      "statusId" : "PAYMENT_SETTLED",
      "paymentMethodTypeId" : "EXT_SHOP_MANUAL",
      "amount" : 390,
      "returnId" : null,
      "orderId" : "KRWE10188",
      "paymentMethodDescription" : "Ext manual"
    } ],
    "orderAdjustments" : [ {
      "customerReferenceId" : null,
      "correspondingProductId" : null,
      "orderItemSeqId" : "_NA_",
      "includeInShipping" : null,
      "description" : null,
      "exemptAmount" : null,
      "productPromoId" : null,
      "taxAuthPartyId" : null,
      "lastModifiedByUserLogin" : null,
      "oldPercentage" : null,
      "primaryGeoId" : null,
      "orderId" : "KRWE10188",
      "taxAuthGeoId" : null,
      "originalAdjustmentId" : null,
      "secondaryGeoId" : null,
      "createdByUserLogin" : null,
      "orderAdjustmentId" : null,
      "amountAlreadyIncluded" : null,
      "lastUpdatedStamp" : null,
      "comments" : null,
      "recurringAmount" : null,
      "lastModifiedDate" : null,
      "sourceReferenceId" : null,
      "productPromoRuleId" : null,
      "isManual" : null,
      "productFeatureId" : null,
      "taxAuthorityRateSeqId" : null,
      "overrideGlAccountId" : null,
      "oldAmountPerQuantity" : null,
      "shipGroupSeqId" : null,
      "amount" : 35,
      "includeInTax" : null,
      "createdDate" : null,
      "productPromoActionSeqId" : null,
      "sourcePercentage" : null,
      "orderAdjustmentTypeId" : "SHIPPING_CHARGES"
    } ],
    "orderAttributes" : [ {
      "attrDescription" : "Shopify User Id",
      "orderId" : "KRWE10188",
      "attrName" : "shopify_user_id",
      "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00",
      "attrValue" : "82607702216"
    } ],
    "orderItems" : [ {
      "productStoreId" : "STORE",
      "orderId" : "KRWE10188",
      "orderName" : "#KREWE37484",
      "orderDate" : "2023-12-07T01:47:49-08:00",
      "orderStatusId" : "ORDER_APPROVED",
      "entryDate" : "2023-12-07T02:09:35-08:00",
      "orderExternalId" : "5499245625544",
      "currency" : "USD",
      "grandTotal" : 390,
      "orderItemSeqId" : "00101",
      "itemStatusId" : "ITEM_APPROVED",
      "orderItemQuantity" : 1,
      "reservedItemQuantity" : null,
      "reservedDatetime" : null,
      "unitPrice" : 355,
      "orderItemExternalId" : "12980256866504",
      "itemDescription" : "COLEMAN | 18K + Matte Indigo Fade + Gravity + Custom Vanity Tint (KIT PRODUCT)",
      "requestedDeliveryDate" : null,
      "requestedDeliveryTime" : null,
      "deliveryWindow" : null,
      "shipGroupSeqId" : "00001",
      "shipmentMethodTypeId" : "OVR_SHP",
      "postalContactMechId" : "10945",
      "telecomContactMechId" : "10946",
      "orderFacilityId" : null,
      "carrierPartyId" : "FEDEX",
      "externalFulfillmentOrderItemId" : "100217",
      "fulfillmentStatus" : "Sent",
      "customerFirstName" : "Dhiraj",
      "customerLastName" : "Nagar",
      "facilityId" : "114",
      "facilityExternalId" : "114",
      "facilityTypeId" : "WAREHOUSE",
      "parentFacilityTypeId" : "DISTRIBUTION_CENTER",
      "statusDatetime" : "2023-12-07T02:09:50-08:00",
      "productId" : "10344",
      "productTypeId" : "MARKETING_PKG_PICK",
      "internalName" : "VANITYKIT-01",
      "salesChannel" : "1",
      "customerPartyId" : "10005",
      "shipTo" : {
        "countryGeoCode" : "US",
        "stateProvinceGeoCode" : "FL",
        "contactMechId" : "10945",
        "toName" : "Dhiraj Nagar",
        "attnName" : null,
        "address1" : "Main St Squre",
        "address2" : "Main St Squre",
        "houseNumber" : null,
        "houseNumberExt" : null,
        "directions" : null,
        "city" : "Miami",
        "cityGeoId" : null,
        "postalCode" : "33172",
        "postalCodeExt" : null,
        "countryGeoId" : "USA",
        "stateProvinceGeoId" : "FL",
        "countyGeoId" : null,
        "municipalityGeoId" : null,
        "postalCodeGeoId" : null,
        "geoPointId" : null,
        "encodedAddressKey" : null,
        "latitude" : null,
        "longitude" : null,
        "isResidentialAddress" : "Y",
        "phone" : {
          "contactMechId" : "10946",
          "countryCode" : null,
          "areaCode" : null,
          "contactNumber" : "08973575538",
          "askForName" : null,
          "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00"
        }
      },
      "goodIdentifications" : [ {
        "idValue" : "40675",
        "fromDate" : "2023-11-22T11:05:40-08:00",
        "goodIdentificationTypeId" : "NETSUITE_PRODUCT_ID",
        "productId" : "10344",
        "lastUpdatedStamp" : "2024-03-27T01:36:21-07:00",
        "thruDate" : null
      }, {
        "idValue" : "42870659088584",
        "lastUpdatedStamp" : "2023-11-22T06:05:00-08:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_ID",
        "productId" : "10344",
        "fromDate" : "2023-11-22T06:05:00-08:00",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-11-22T06:05:00-08:00",
        "productId" : "10344",
        "idValue" : "VANITYKIT-01",
        "fromDate" : "2023-11-22T06:05:00-08:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "lastUpdatedStamp" : "2023-11-22T06:05:00-08:00",
        "productId" : "10344",
        "idValue" : "VANITYKIT-01",
        "fromDate" : "2023-11-22T06:05:00-08:00",
        "thruDate" : null
      } ],
      "orderItemAdjustments" : [ ],
      "orderItemAttributes" : [ ],
      "facilityGroupMembers" : [ {
        "sequenceNum" : null,
        "lastUpdatedStamp" : "2023-11-23T13:36:59-08:00",
        "fromDate" : "2023-11-23T13:36:55-08:00",
        "facilityGroupId" : "NETSUITE_FULFILLMENT",
        "facilityId" : "114",
        "thruDate" : null
      }, {
        "facilityGroupId" : "OMS_FULFILLMENT",
        "sequenceNum" : null,
        "fromDate" : "2023-12-07T01:58:42-08:00",
        "lastUpdatedStamp" : "2023-12-07T01:58:42-08:00",
        "facilityId" : "114",
        "thruDate" : null
      } ],
      "fromOrderItemAssocs" : [ ],
      "toOrderItemAssocs" : [ {
        "toOrderItemSeqId" : "00102",
        "quantity" : null,
        "toShipGroupSeqId" : "00001",
        "toOrderId" : "KRWE10188",
        "orderId" : "KRWE10188",
        "orderItemAssocTypeId" : "KIT_COMPONENT",
        "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00",
        "shipGroupSeqId" : "00001",
        "orderItemSeqId" : "00101"
      }, {
        "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00",
        "quantity" : null,
        "toShipGroupSeqId" : "00001",
        "toOrderId" : "KRWE10188",
        "orderId" : "KRWE10188",
        "orderItemAssocTypeId" : "KIT_COMPONENT",
        "shipGroupSeqId" : "00001",
        "orderItemSeqId" : "00101",
        "toOrderItemSeqId" : "00103"
      } ],
      "productFeatures" : [ {
        "productFeatureId" : "10000",
        "amount" : null,
        "productFeatureApplTypeId" : "STANDARD_FEATURE",
        "recurringAmount" : null,
        "description" : "Default Title",
        "idCode" : null,
        "sequenceNum" : 1,
        "contentId" : null,
        "productFeatureTypeId" : "10000",
        "numberSpecified" : null,
        "productId" : "10344",
        "productFeatureCategoryId" : null,
        "uomId" : null,
        "thruDate" : null,
        "defaultSequenceNum" : null,
        "defaultAmount" : null,
        "imageUrl" : null,
        "abbrev" : null,
        "fromDate" : "2023-11-22T06:05:00-08:00"
      } ]
    }, {
      "productStoreId" : "STORE",
      "orderId" : "KRWE10188",
      "orderName" : "#KREWE37484",
      "orderDate" : "2023-12-07T01:47:49-08:00",
      "orderStatusId" : "ORDER_APPROVED",
      "entryDate" : "2023-12-07T02:09:35-08:00",
      "orderExternalId" : "5499245625544",
      "currency" : "USD",
      "grandTotal" : 390,
      "orderItemSeqId" : "00102",
      "itemStatusId" : "ITEM_APPROVED",
      "orderItemQuantity" : 1,
      "reservedItemQuantity" : 1,
      "reservedDatetime" : "2023-12-14T00:15:52-08:00",
      "unitPrice" : 0,
      "orderItemExternalId" : null,
      "itemDescription" : "Default Title (COMPONENT PRODUCT)",
      "requestedDeliveryDate" : null,
      "requestedDeliveryTime" : null,
      "deliveryWindow" : null,
      "shipGroupSeqId" : "00001",
      "shipmentMethodTypeId" : "OVR_SHP",
      "postalContactMechId" : "10945",
      "telecomContactMechId" : "10946",
      "orderFacilityId" : null,
      "carrierPartyId" : "FEDEX",
      "externalFulfillmentOrderItemId" : "100218",
      "fulfillmentStatus" : "Sent",
      "customerFirstName" : "Dhiraj",
      "customerLastName" : "Nagar",
      "facilityId" : "114",
      "facilityExternalId" : "114",
      "facilityTypeId" : "WAREHOUSE",
      "parentFacilityTypeId" : "DISTRIBUTION_CENTER",
      "statusDatetime" : "2023-12-07T02:09:50-08:00",
      "productId" : "10342",
      "productTypeId" : "FINISHED_GOOD",
      "internalName" : "SCJ1-228G-21CS-222",
      "salesChannel" : "1",
      "customerPartyId" : "10005",
      "shipTo" : {
        "countryGeoCode" : "US",
        "stateProvinceGeoCode" : "FL",
        "contactMechId" : "10945",
        "toName" : "Dhiraj Nagar",
        "attnName" : null,
        "address1" : "Main St Squre",
        "address2" : "Main St Squre",
        "houseNumber" : null,
        "houseNumberExt" : null,
        "directions" : null,
        "city" : "Miami",
        "cityGeoId" : null,
        "postalCode" : "33172",
        "postalCodeExt" : null,
        "countryGeoId" : "USA",
        "stateProvinceGeoId" : "FL",
        "countyGeoId" : null,
        "municipalityGeoId" : null,
        "postalCodeGeoId" : null,
        "geoPointId" : null,
        "encodedAddressKey" : null,
        "latitude" : null,
        "longitude" : null,
        "isResidentialAddress" : "Y",
        "phone" : {
          "contactMechId" : "10946",
          "countryCode" : null,
          "areaCode" : null,
          "contactNumber" : "08973575538",
          "askForName" : null,
          "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00"
        }
      },
      "goodIdentifications" : [ {
        "idValue" : "31083",
        "fromDate" : "2023-11-22T11:05:38-08:00",
        "lastUpdatedStamp" : "2024-03-27T01:36:20-07:00",
        "goodIdentificationTypeId" : "NETSUITE_PRODUCT_ID",
        "productId" : "10342",
        "thruDate" : null
      }, {
        "fromDate" : "2023-11-22T06:04:59-08:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_ID",
        "idValue" : "42389625733320",
        "productId" : "10342",
        "thruDate" : null,
        "lastUpdatedStamp" : "2023-11-22T06:04:59-08:00"
      }, {
        "idValue" : "SCJ1-228G-21CS-222",
        "fromDate" : "2023-11-22T06:04:59-08:00",
        "productId" : "10342",
        "lastUpdatedStamp" : "2023-11-22T06:04:59-08:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "thruDate" : null
      }, {
        "idValue" : "SCJ1-228G-21CS-222",
        "fromDate" : "2023-11-22T06:04:59-08:00",
        "goodIdentificationTypeId" : "SKU",
        "lastUpdatedStamp" : "2023-11-22T06:04:59-08:00",
        "productId" : "10342",
        "thruDate" : null
      }, {
        "fromDate" : "2023-11-22T06:04:59-08:00",
        "idValue" : "810062125869",
        "goodIdentificationTypeId" : "UPCA",
        "productId" : "10342",
        "lastUpdatedStamp" : "2023-11-22T06:04:59-08:00",
        "thruDate" : null
      } ],
      "orderItemAdjustments" : [ ],
      "orderItemAttributes" : [ ],
      "facilityGroupMembers" : [ {
        "sequenceNum" : null,
        "lastUpdatedStamp" : "2023-11-23T13:36:59-08:00",
        "fromDate" : "2023-11-23T13:36:55-08:00",
        "facilityGroupId" : "NETSUITE_FULFILLMENT",
        "facilityId" : "114",
        "thruDate" : null
      }, {
        "facilityGroupId" : "OMS_FULFILLMENT",
        "sequenceNum" : null,
        "fromDate" : "2023-12-07T01:58:42-08:00",
        "lastUpdatedStamp" : "2023-12-07T01:58:42-08:00",
        "facilityId" : "114",
        "thruDate" : null
      } ],
      "fromOrderItemAssocs" : [ {
        "toOrderItemSeqId" : "00102",
        "quantity" : null,
        "toShipGroupSeqId" : "00001",
        "toOrderId" : "KRWE10188",
        "orderId" : "KRWE10188",
        "orderItemAssocTypeId" : "KIT_COMPONENT",
        "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00",
        "shipGroupSeqId" : "00001",
        "orderItemSeqId" : "00101"
      } ],
      "toOrderItemAssocs" : [ ],
      "productFeatures" : [ {
        "productFeatureId" : "10000",
        "amount" : null,
        "productFeatureApplTypeId" : "STANDARD_FEATURE",
        "recurringAmount" : null,
        "description" : "Default Title",
        "idCode" : null,
        "sequenceNum" : 1,
        "contentId" : null,
        "productFeatureTypeId" : "10000",
        "numberSpecified" : null,
        "productFeatureCategoryId" : null,
        "uomId" : null,
        "productId" : "10342",
        "thruDate" : null,
        "fromDate" : "2023-11-22T06:04:59-08:00",
        "defaultSequenceNum" : null,
        "defaultAmount" : null,
        "imageUrl" : null,
        "abbrev" : null
      } ]
    }, {
      "productStoreId" : "STORE",
      "orderId" : "KRWE10188",
      "orderName" : "#KREWE37484",
      "orderDate" : "2023-12-07T01:47:49-08:00",
      "orderStatusId" : "ORDER_APPROVED",
      "entryDate" : "2023-12-07T02:09:35-08:00",
      "orderExternalId" : "5499245625544",
      "currency" : "USD",
      "grandTotal" : 390,
      "orderItemSeqId" : "00103",
      "itemStatusId" : "ITEM_APPROVED",
      "orderItemQuantity" : 1,
      "reservedItemQuantity" : 1,
      "reservedDatetime" : "2023-12-14T00:15:53-08:00",
      "unitPrice" : 0,
      "orderItemExternalId" : null,
      "itemDescription" : "Dark Blue Gradient / 4B (COMPONENT PRODUCT)",
      "requestedDeliveryDate" : null,
      "requestedDeliveryTime" : null,
      "deliveryWindow" : null,
      "shipGroupSeqId" : "00001",
      "shipmentMethodTypeId" : "OVR_SHP",
      "postalContactMechId" : "10945",
      "telecomContactMechId" : "10946",
      "orderFacilityId" : null,
      "carrierPartyId" : "FEDEX",
      "externalFulfillmentOrderItemId" : "100219",
      "fulfillmentStatus" : "Sent",
      "customerFirstName" : "Dhiraj",
      "customerLastName" : "Nagar",
      "facilityId" : "114",
      "facilityExternalId" : "114",
      "facilityTypeId" : "WAREHOUSE",
      "parentFacilityTypeId" : "DISTRIBUTION_CENTER",
      "statusDatetime" : "2023-12-07T02:09:50-08:00",
      "productId" : "11741",
      "productTypeId" : "FINISHED_GOOD",
      "internalName" : "VANITYLENS-06",
      "salesChannel" : "1",
      "customerPartyId" : "10005",
      "shipTo" : {
        "countryGeoCode" : "US",
        "stateProvinceGeoCode" : "FL",
        "contactMechId" : "10945",
        "toName" : "Dhiraj Nagar",
        "attnName" : null,
        "address1" : "Main St Squre",
        "address2" : "Main St Squre",
        "houseNumber" : null,
        "houseNumberExt" : null,
        "directions" : null,
        "city" : "Miami",
        "cityGeoId" : null,
        "postalCode" : "33172",
        "postalCodeExt" : null,
        "countryGeoId" : "USA",
        "stateProvinceGeoId" : "FL",
        "countyGeoId" : null,
        "municipalityGeoId" : null,
        "postalCodeGeoId" : null,
        "geoPointId" : null,
        "encodedAddressKey" : null,
        "latitude" : null,
        "longitude" : null,
        "isResidentialAddress" : "Y",
        "phone" : {
          "contactMechId" : "10946",
          "countryCode" : null,
          "areaCode" : null,
          "contactNumber" : "08973575538",
          "askForName" : null,
          "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00"
        }
      },
      "goodIdentifications" : [ {
        "fromDate" : "2023-11-22T11:05:40-08:00",
        "goodIdentificationTypeId" : "NETSUITE_PRODUCT_ID",
        "idValue" : "38040",
        "productId" : "11741",
        "lastUpdatedStamp" : "2024-03-27T01:36:21-07:00",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SHOPIFY_PROD_ID",
        "productId" : "11741",
        "lastUpdatedStamp" : "2023-11-22T06:07:31-08:00",
        "fromDate" : "2023-11-22T06:07:30-08:00",
        "idValue" : "42870661480648",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-11-22T06:07:30-08:00",
        "idValue" : "VANITYLENS-06",
        "productId" : "11741",
        "fromDate" : "2023-11-22T06:07:30-08:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "thruDate" : null
      }, {
        "idValue" : "VANITYLENS-06",
        "lastUpdatedStamp" : "2023-11-22T06:07:31-08:00",
        "goodIdentificationTypeId" : "SKU",
        "productId" : "11741",
        "fromDate" : "2023-11-22T06:07:30-08:00",
        "thruDate" : null
      } ],
      "orderItemAdjustments" : [ ],
      "orderItemAttributes" : [ ],
      "facilityGroupMembers" : [ {
        "sequenceNum" : null,
        "lastUpdatedStamp" : "2023-11-23T13:36:59-08:00",
        "fromDate" : "2023-11-23T13:36:55-08:00",
        "facilityGroupId" : "NETSUITE_FULFILLMENT",
        "facilityId" : "114",
        "thruDate" : null
      }, {
        "facilityGroupId" : "OMS_FULFILLMENT",
        "sequenceNum" : null,
        "fromDate" : "2023-12-07T01:58:42-08:00",
        "lastUpdatedStamp" : "2023-12-07T01:58:42-08:00",
        "facilityId" : "114",
        "thruDate" : null
      } ],
      "fromOrderItemAssocs" : [ {
        "lastUpdatedStamp" : "2023-12-07T02:09:35-08:00",
        "quantity" : null,
        "toShipGroupSeqId" : "00001",
        "toOrderId" : "KRWE10188",
        "orderId" : "KRWE10188",
        "orderItemAssocTypeId" : "KIT_COMPONENT",
        "shipGroupSeqId" : "00001",
        "orderItemSeqId" : "00101",
        "toOrderItemSeqId" : "00103"
      } ],
      "toOrderItemAssocs" : [ ],
      "productFeatures" : [ {
        "amount" : null,
        "productFeatureApplTypeId" : "STANDARD_FEATURE",
        "productFeatureId" : "10169",
        "recurringAmount" : null,
        "sequenceNum" : 2,
        "idCode" : null,
        "contentId" : null,
        "numberSpecified" : null,
        "productId" : "11741",
        "productFeatureTypeId" : "10010",
        "productFeatureCategoryId" : null,
        "uomId" : null,
        "fromDate" : "2023-11-22T06:07:30-08:00",
        "thruDate" : null,
        "defaultSequenceNum" : null,
        "defaultAmount" : null,
        "imageUrl" : null,
        "abbrev" : null,
        "description" : "4B"
      }, {
        "amount" : null,
        "productFeatureId" : "10173",
        "productFeatureApplTypeId" : "STANDARD_FEATURE",
        "recurringAmount" : null,
        "idCode" : null,
        "sequenceNum" : 1,
        "description" : "Dark Blue Gradient",
        "contentId" : null,
        "numberSpecified" : null,
        "productId" : "11741",
        "productFeatureCategoryId" : null,
        "uomId" : null,
        "fromDate" : "2023-11-22T06:07:30-08:00",
        "productFeatureTypeId" : "COLOR",
        "thruDate" : null,
        "defaultSequenceNum" : null,
        "defaultAmount" : null,
        "imageUrl" : null,
        "abbrev" : null
      } ]
    } ]
  }
]

Attributes

The following attributes have been prepared in the feed:

Field Name
Description
Sample value

productStoreId

The ID of the product store

STORE

orderId

The HotWax Commerce unique identifier for the order

12082

orderName

The eCommerce order identifier

9000004032

orderDate

The date and time the order was placed on eCommerce

2024-02-23T03:43:23+09:00

orderStatusId

Order status

ORDER_APPROVED

entryDate

The date and time the order was imported in HotWax Commerce OMS

2024-02-23T03:50:12+09:00

orderExternalId

The external ID of the order

5384320450749

currency

The payment currency used for the order

JPY

grandTotal

The total sum of all costs associated with an order

1870

customerFirstName

The first name of the customer

jhon

customerLastName

The last name of the customer

deo

salesChannel

The sales channel

WEB_CHANNEL

customerPartyId

The customer party ID

10290

isShippingChargesSent

Indicates if shipping charges are sent

Y

billTo

The billing information

See below

orderIdentifications

The order identifications

See below

customerPartyIdentifications

The customer party identifications

See below

payments

The payments

See below

orderAdjustments

The order adjustments

See below

orderAttributes

The order attributes

See below

orderItems

The order items

See below

This object contains the following attributes, each of which has internal nesting:

Field Name
Description
Sample value

billTo

The billing information

See below

orderIdentifications

The order identifications

See below

customerPartyIdentifications

The customer party identifications

See below

payments

The payments

See below

orderAdjustments

The order adjustments

See below

orderAttributes

The order attributes

See below

orderItems

The order items

See below

billTo

Field Name
Description
Sample value

countryGeoCode

The country geo code

JP

stateProvinceGeoCode

The state province geo code

null

contactMechId

The contact mechanism ID

18227

toName

The name of the recipient

jhon deo

address1

The first line of the address

足立

address2

The second line of the address

null

city

The city

足立区

postalCode

The postal code

120-0015

countryGeoId

The country geo ID

JPN

stateProvinceGeoId

The state province geo ID

null

isResidentialAddress

Indicates if the address is residential

Y

phone

The phone information

See below

billTo.phone

Field Name
Description
Sample value

contactMechId

The contact mechanism ID

18228

countryCode

The country code

1

areaCode

The area code

null

contactNumber

The contact number

0593785656

orderIdentifications

Field Name
Description
Sample value

idValue

The ID value

5384320450749

orderId

The order ID

12082

fromDate

The from date

2024-02-23T03:50:12+09:00

thruDate

The thru date

null

customerPartyIdentifications

Field Name
Description
Sample value

partyIdentificationTypeId

The party identification type ID

SHOPIFY_CUST_ID

idValue

The ID value

7053008306365

partyId

The party ID

10290

payments

Field Name
Description
Sample value

paymentMethodCode

The payment method code

null

amount

The amount

1870

paymentMethodTypeId

The payment method type ID

EXT_SHOP_OTHR_GTWAY

paymentMethodDescription

The payment method description

Ext Other Gateways

orderId

The order ID

12082

statusId

The status ID

PAYMENT_AUTHORIZED

returnId

The return ID

null

createdDate

The date and time of creation

2024-02-23T03:50:12+09:00

orderAdjustments

Field Name
Description
Sample value

orderAdjustmentTypeId

The order adjustment type ID

SHIPPING_SALES_TAX

amount

The amount

50

orderAdjustmentId

The order adjustment ID

null

orderId

The order ID

12082

orderAttributes

Field Name
Description
Sample value

orderId

The order ID

12082

attrDescription

The attribute description

null

attrName

The attribute name

COD_FEE_ADJ_CREATED

attrValue

The attribute value

true

orderItems

Field Name
Description
Sample value

productStoreId

The ID of the product store

STORE

orderId

The unique identifier for the order

12082

orderName

The name of the order

9000004032

orderDate

The date and time the order was placed

2024-02-23T03:43:23+09:00

orderStatusId

The status of the order

ORDER_APPROVED

entryDate

The date and time the order was entered

2024-02-23T03:50:12+09:00

orderExternalId

The external ID of the order

5384320450749

currency

The currency used for the order

JPY

grandTotal

The total amount of the order

1870

orderItemSeqId

The sequence ID of the order item

00101

itemStatusId

The status of the item

ITEM_APPROVED

orderItemQuantity

The quantity of the order item

1

reservedItemQuantity

The quantity of reserved items

1

unitPrice

The unit price of the item

1200

orderItemExternalId

The external ID of the order item

12915436126397

itemDescription

The description of the item

ソックス クルー 3ペア ホワイト

shipGroupSeqId

The sequence ID of the ship group

00001

shipmentMethodTypeId

The shipment method type ID

STANDARD

postalContactMechId

The postal contact mechanism ID

18224

telecomContactMechId

The telecom contact mechanism ID

18225

carrierPartyId

The carrier party ID

NA

externalFulfillmentOrderItemId

The external fulfillment order item ID

null

fulfillmentStatus

The fulfillment status

null

customerFirstName

The first name of the customer

jhon

customerLastName

The last name of the customer

deo

facilityId

The facility ID

WH0615

facilityExternalId

The external ID of the facility

22

facilityTypeId

This attribute contains the facility Type Id.

WAREHOUSE

parentFacilityTypeId

This attribute contains ID of the parent facility for facilityId.

DISTRIBUTION_CENTER

statusDatetime

The date and time of the status

2024-02-23T04:05:15+09:00

productId

The product's unique identifier in HotWax Commerce

60757

productTypeId

The type of product identification

FINISHED_GOOD

internalName

String

-

salesChannel

The sales channel

WEB_CHANNEL

customerPartyId

The customer's unique identification in HotWax Commerce

10290

shipTo

The shipping information

See below

goodIdentifications

The product/good identifications

See below

orderItemAdjustments

The order item adjustments

See below

orderItemAttributes

The order item attributes

See below

facilityGroupMembers

The facility group members

See below

fromOrderItemAssocs

The from order item associations

See below

toOrderItemAssocs

The to order item associations

See below

productFeatures

The product features

See below

orderItems.shipTo

Field Name
Description
Sample value

countryGeoCode

The country geo code

JP

stateProvinceGeoCode

The state province geo code

null

contactMechId

The contact mechanism ID

18224

toName

The name of the recipient

jhon deo

address1

The first line of the address

足立

address2

The second line of the address

null

city

The city

足立区

postalCode

The postal code

120-0015

countryGeoId

The country geo ID

JPN

stateProvinceGeoId

The state province geo ID

null

countyGeoId

The county geo ID

null

isResidentialAddress

Indicates if the address is residential

Y

phone

The phone information

See below

orderItems.phone.shipTo

Field Name
Description
Sample value

contactMechId

The contact mechanism ID

18228

countryCode

The country code

1

areaCode

The area code

null

contactNumber

The contact number

0593785656

orderItem.goodIdentification

Field Name
Description
Sample value

idValue

The good identifications ID value

37639003275453

fromDate

The identification creation date

2023-12-25T03:48:21+09:00

productId

The HotWax Commerce's product ID

60757

goodIdentificationTypeId

The type of good identification

SHOPIFY_PROD_ID

thruDate

The identification expiration date

null

orderItems.orderItemAdjustments:

Field Name
Description
Sample value

amount

The amount of order adjustment

120

orderAdjustmentTypeId

The order adjustment type ID

SALES_TAX

orderId

The order ID

12082

orderItemSeqId

The Order Item Seq ID.

0001

orderItemAttributes

Field Name
Description
Sample value

orderId

The order ID

12082

attrDescription

The attribute description

null

attrName

The attribute name

COD_FEE_ADJ_CREATED

attrValue

The attribute value

true

orderItemSeqId

the Order item sequence id.

00001

facilityGroupMembers

Field Name
Description
Sample value

facilityId

The facility ID

WH0615

facilityGroupId

The facility group ID

22

thruDate

The thru date

null

fromDate

The from date

2024-02-23T03:50:12+09:00

sequenceNum

The sequence number for the member.

1

fromOrderItemAssocs:

Field Name
Description
Sample value

orderId

The order ID of kit product

12082

orderItemSeqId

The order items seq ID of the kit product.

00101

toOrderId

The order ID of the component product.

null

toOrderItemSeqId

The order items seq ID of the component product.

00001

shipGroupSeqId

The ship group seq ID of the kit product.

00002

toShipGroupSeqId

The ship group seq ID of the component product.

00003

orderItemAssocTypeId

The order item assoc type ID.

KIT_COMPONENT

toOrderItemAssocs:

Field Name
Description
Sample value

orderId

The order ID of kit product

12082

orderItemSeqId

The order items seq ID of the kit product.

00101

toOrderId

The order ID of the component product.

null

toOrderItemSeqId

The order items seq ID of the component product.

00001

shipGroupSeqId

The ship group seq ID of the kit product.

00002

toShipGroupSeqId

The ship group seq ID of the component product.

00003

orderItemAssocTypeId

The order item assoc type ID like.

KIT_COMPONENT

productFeatures:

Field Name
Description
Sample value

productFeatureApplTypeId

the feature Appl type like

STANDARD_FEATURE

productFeatureId

the unique feature ID.

10000

productFeatureCategoryId

the product feature category ID.

10015

description

the description of the feature.

Red, L

productId

the Product ID.

10000

productFeaturTypeId

the feature type like

COLOR

Returns Financial Feed

Learn about the Returns Financial Feed, a JSON-formatted return-wise feed generated from HotWax Commerce (HC) OMS.

Introduction

The Returns Financial Feed, generated by HotWax, is a JSON-formatted feed containing details about returns created against orders, originating from both online and in-store channels. The feed is used to post the return details to ERP systems for finanacial reconciliation. The feed is transformed - by HotWax's intermediary systems - in a way that allow integrated third-party systems, such as the ERP systems, to ingest the generated data.

Customization

The Returns Financial Feed has certain out-of-the-box parameters that allow users to generate the feed as per their requirements.

Parameter

Description

orderId

Filter return details for a specific HC order ID.

returnId

Filter return details for a specific HC return ID.

sinceReturnDate

Filter returns created in Shopify after a specific date.

sinceReturnCompletedDate

Filter returns completed in HotWax Commerce after a specific date. Corresponds to the completion date for return items in HotWax Commerce.

sinceEntryDate

Filter returns created after a specific date in HotWax Commerce. Corresponds to the entry date in HotWax Commerce.

productStoreIds

Filter returns for for particular product store IDs to generate brand-specific feeds. For example, "WSC_STORE".

returnChannelEnumId

Filter returns made from different channels such as e-commerce returns or in-store returns.

customParametersMap

Filter returns using custom conditions, allowing flexibility in specifying new conditions. For example, {"returnReasonId_op": "empty", "returnReasonId_not": "Y"}.

optimize

Optimize the query or process for better performance.

Sample Returns feed
[
  {
    "returnId": "10821",
    "returnItemSeqId": null,
    "returnReasonId": null,
    "returnReasonNote": null,
    "shopId": "DEMO_STORE",
    "orderItemRequestedShipMethTypeId": null,
    "entryDate": "2024-09-23T14:01:16-05:00",
    "returnDate": "2024-09-20T12:17:33-05:00",
    "returnChannelEnumId": "ECOM_RTN_CHANNEL",
    "orderId": null,
    "orderItemSeqId": null,
    "returnItemAmountTotal": null,
    "statusId": null,
    "completedDatetime": "2024-09-23T13:41:36-05:00",
    "productStoreId": "WSC_STORE",
    "orderName": null,
    "productStoreExternalId": "7",
    "customerPartyId": "10371",
    "returnStatusId": "RETURN_COMPLETED",
    "returnTypeId": null,
    "isShippingChargesSent": "Y",
    "returnAdjustments": [],
    "customerPartyIdentifications": [
      {
        "partyIdentificationTypeId": "NETSUITE_CUSTOMER_ID",
        "lastUpdatedStamp": "2024-02-17T05:20:19-05:00",
        "partyId": "10371",
        "idValue": "8862402"
      },
      {
        "partyIdentificationTypeId": "SHOPIFY_CUST_ID",
        "idValue": "7856592781596",
        "partyId": "10371",
        "lastUpdatedStamp": "2024-02-17T04:50:07-05:00"
      }
    ],
    "tenderAmount": 179.68,
    "payments": [
      {
        "paymentMethodCode": null,
        "paymentMode": null,
        "amount": 179.68,
        "manualAuthCode": null,
        "orderId": "DEV12410",
        "applicationIdentifier": null,
        "manualRefNum": "7444160020764",
        "statusId": "PAYMENT_REFUNDED",
        "requestId": null,
        "paymentMethodTypeId": "EXT_SHOP_MANUAL",
        "createdDate": "2024-11-18T06:01:16-05:00",
        "paymentMethodDescription": "Manual",
        "returnId": "10821"
      }
    ],
    "returnItems": [
      {
        "returnId": "10821",
        "returnItemSeqId": "00101",
        "orderId": "DEV12410",
        "orderItemSeqId": "00102",
        "returnItemPrice": 79.5,
        "returnQuantity": 1,
        "returnReasonId": "STYLE",
        "productId": "10003",
        "returnReasonNote": null,
        "returnItemStatusId": "RETURN_COMPLETED",
        "orderItemRequestedShipMethTypeId": "STANDARD",
        "taxCode": "PC040100",
        "orderItemExternalId": "15300755063068",
        "orderName": "#HCDEV4364",
        "facilityExternalId": "94",
        "facilityId": "BROADWAY",
        "facilityTypeId": "RETAIL_STORE",
        "parentFacilityTypeId": "PHYSICAL_STORE",
        "productStoreExternalId": "7",
        "currencyUom": "USD",
        "customerPartyId": "10371",
        "shipToContactMechId": null,
        "returnDate": "2024-09-23T13:41:36-04:00",
        "returnExternalId": "5816353052",
        "returnTypeId": "RTN_REFUND",
        "receivedQuantity": null,
        "completedDatetime": "2024-11-18T06:01:16-05:00",
        "shipTo": null,
        "billTo": {
          "longitude": -79.38066,
          "houseNumberExt": null,
          "postalCodeGeoId": null,
          "stateProvinceGeoCode": "ON",
          "houseNumber": null,
          "postalCodeExt": null,
          "attnName": null,
          "countyGeoId": null,
          "cityGeoId": null,
          "postalCode": "L3V 1P5",
          "latitude": 44.606503,
          "stateProvinceGeoId": "ON",
          "contactMechId": "20656",
          "address2": null,
          "toName": "John Doe",
          "encodedAddressKey": null,
          "stateProvinceGeoName": "Ontario",
          "address1": "746 Atherley Road",
          "countryGeoCode": "CA",
          "countryGeoId": "CAN",
          "directions": null,
          "city": "Orillia",
          "municipalityGeoId": null,
          "countryGeoName": "Canada",
          "geoPointId": null
        },
        "productIdentifications": [
          {
            "fromDate": "2024-02-26T04:12:21-05:00",
            "lastUpdatedStamp": "2024-02-26T04:12:21-05:00",
            "idValue": "6104.42.00.10",
            "goodIdentificationTypeId": "HS_CODE",
            "productId": "10003",
            "thruDate": null
          },
          {
            "fromDate": "2024-01-08T11:20:16-05:00",
            "goodIdentificationTypeId": "NETSUITE_PRODUCT_ID",
            "idValue": "44509",
            "productId": "10003",
            "lastUpdatedStamp": "2024-08-13T01:37:02-04:00",
            "thruDate": null
          },
          {
            "lastUpdatedStamp": "2024-02-09T06:34:09-05:00",
            "goodIdentificationTypeId": "SHOPIFY_PROD_ID",
            "fromDate": "2024-01-08T06:53:02-05:00",
            "productId": "10003",
            "idValue": "47264706134300",
            "thruDate": null
          },
          {
            "lastUpdatedStamp": "2024-02-09T06:34:09-05:00",
            "idValue": "2120096-1DD-M",
            "fromDate": "2024-01-08T06:53:02-05:00",
            "productId": "10003",
            "goodIdentificationTypeId": "SHOPIFY_PROD_SKU",
            "thruDate": null
          },
          {
            "idValue": "2120096-1DD-M",
            "goodIdentificationTypeId": "SKU",
            "fromDate": "2024-01-08T06:53:02-05:00",
            "lastUpdatedStamp": "2024-02-09T06:34:09-05:00",
            "productId": "10003",
            "thruDate": null
          },
          {
            "lastUpdatedStamp": "2024-01-08T06:53:02-05:00",
            "idValue": "2120096-1DD-M",
            "fromDate": "2024-01-08T06:53:02-05:00",
            "goodIdentificationTypeId": "UPCA",
            "productId": "10003",
            "thruDate": null
          }
        ],
        "returnItemAdjustments": [
          {
            "customerReferenceId": null,
            "shipGroupSeqId": "_NA_",
            "correspondingProductId": null,
            "createdDate": "2024-09-23T08:41:26-04:00",
            "comments": "CANADA GST/TPS",
            "includeInShipping": null,
            "lastUpdatedStamp": "2024-11-18T06:01:16-05:00",
            "orderId": "DEV12410",
            "exemptAmount": null,
            "productPromoId": null,
            "taxAuthPartyId": null,
            "lastModifiedByUserLogin": null,
            "returnAdjustmentTypeId": "RET_SALES_TAX_ADJ",
            "description": "Return Sales Tax",
            "primaryGeoId": null,
            "taxAuthGeoId": null,
            "secondaryGeoId": null,
            "orderAdjustmentId": "15832",
            "returnId": "10821",
            "sourcePercentage": 0.05,
            "returnAdjustmentId": "10702",
            "returnItemSeqId": "00101",
            "createdByUserLogin": "hotwax.user",
            "lastModifiedDate": null,
            "sourceReferenceId": null,
            "productPromoRuleId": null,
            "productFeatureId": null,
            "taxAuthorityRateSeqId": null,
            "overrideGlAccountId": null,
            "includeInTax": null,
            "productPromoActionSeqId": null,
            "amount": 3.98,
            "returnTypeId": "RTN_REFUND"
          },
          {
            "customerReferenceId": null,
            "shipGroupSeqId": "_NA_",
            "correspondingProductId": null,
            "createdDate": "2024-09-23T08:41:26-04:00",
            "includeInShipping": null,
            "orderId": "DEV12410",
            "exemptAmount": null,
            "comments": "ONTARIO HST",
            "productPromoId": null,
            "taxAuthPartyId": null,
            "lastModifiedByUserLogin": null,
            "returnAdjustmentTypeId": "RET_SALES_TAX_ADJ",
            "description": "Return Sales Tax",
            "primaryGeoId": null,
            "taxAuthGeoId": null,
            "secondaryGeoId": null,
            "orderAdjustmentId": "15833",
            "returnId": "10821",
            "returnItemSeqId": "00101",
            "returnAdjustmentId": "10703",
            "sourcePercentage": 0.08,
            "amount": 6.36,
            "createdByUserLogin": "hotwax.user",
            "lastModifiedDate": null,
            "sourceReferenceId": null,
            "productPromoRuleId": null,
            "productFeatureId": null,
            "taxAuthorityRateSeqId": null,
            "overrideGlAccountId": null,
            "includeInTax": null,
            "productPromoActionSeqId": null,
            "lastUpdatedStamp": "2024-11-18T06:01:16-05:00",
            "returnTypeId": "RTN_REFUND"
          }
        ],
        "facilityGroupMembers": [
          {
            "facilityGroupId": "AUTO_SHIPPING_LABEL",
            "fromDate": "2024-10-05T07:58:20-04:00",
            "sequenceNum": null,
            "lastUpdatedStamp": "2024-10-05T07:58:24-04:00",
            "facilityId": "BROADWAY",
            "thruDate": null
          },
          {
            "lastUpdatedStamp": "2024-10-15T11:08:42-04:00",
            "fromDate": "2024-10-15T11:08:42-04:00",
            "sequenceNum": null,
            "facilityId": "BROADWAY",
            "facilityGroupId": "FAC_GRP",
            "thruDate": null
          },
          {
            "fromDate": "2024-08-26T03:30:47-04:00",
            "facilityGroupId": "ONLINE_FAC_GRP",
            "sequenceNum": null,
            "facilityId": "BROADWAY",
            "lastUpdatedStamp": "2024-08-26T03:30:47-04:00",
            "thruDate": null
          },
          {
            "facilityGroupId": "OMS_FULFILLMENT",
            "sequenceNum": null,
            "fromDate": "2024-01-08T04:11:40-05:00",
            "lastUpdatedStamp": "2024-01-08T04:11:40-05:00",
            "facilityId": "BROADWAY",
            "thruDate": null
          },
          {
            "facilityGroupId": "PICKUP",
            "sequenceNum": null,
            "lastUpdatedStamp": "2024-11-13T08:50:58-05:00",
            "facilityId": "BROADWAY",
            "fromDate": "2024-11-13T08:50:58-05:00",
            "thruDate": null
          },
          {
            "fromDate": "2024-06-27T10:42:13-04:00",
            "sequenceNum": null,
            "facilityGroupId": "PICKUP",
            "lastUpdatedStamp": "2024-06-27T10:42:13-04:00",
            "facilityId": "BROADWAY",
            "thruDate": null
          },
          {
            "facilityGroupId": "STORES_FAC_GRP",
            "lastUpdatedStamp": "2025-01-16T14:51:05-05:00",
            "sequenceNum": 5,
            "facilityId": "BROADWAY",
            "fromDate": "2025-01-16T14:51:05-05:00",
            "thruDate": null
          },
          {
            "sequenceNum": null,
            "lastUpdatedStamp": "2024-07-25T05:20:32-04:00",
            "facilityGroupId": "US_INVENTORY",
            "fromDate": "2024-07-25T05:20:32-04:00",
            "facilityId": "BROADWAY",
            "thruDate": null
          },
          {
            "lastUpdatedStamp": "2024-03-20T06:13:09-04:00",
            "sequenceNum": null,
            "fromDate": "2024-03-20T06:13:09-04:00",
            "facilityId": "BROADWAY",
            "facilityGroupId": "_NA_",
            "thruDate": null
          }
        ]
      },
      {
        "returnId": "10821",
        "returnItemSeqId": "00102",
        "orderId": "DEV12410",
        "orderItemSeqId": "00101",
        "returnItemPrice": 79.5,
        "returnQuantity": 1,
        "returnReasonId": "UNWANTED",
        "productId": "10004",
        "returnReasonNote": null,
        "returnItemStatusId": "RETURN_COMPLETED",
        "orderItemRequestedShipMethTypeId": "STANDARD",
        "taxCode": "PC040100",
        "orderItemExternalId": "15300755095836",
        "orderName": "#HCDEV4364",
        "facilityExternalId": "94",
        "facilityId": "BROADWAY",
        "facilityTypeId": "RETAIL_STORE",
        "parentFacilityTypeId": "PHYSICAL_STORE",
        "productStoreExternalId": "7",
        "currencyUom": "USD",
        "customerPartyId": "10371",
        "shipToContactMechId": null,
        "returnDate": "2024-09-23T13:41:36-04:00",
        "returnExternalId": "5816353052",
        "returnTypeId": "RTN_REFUND",
        "receivedQuantity": null,
        "completedDatetime": "2024-11-18T06:01:16-05:00",
        "shipTo": null,
        "billTo": {
          "longitude": -79.38066,
          "houseNumberExt": null,
          "postalCodeGeoId": null,
          "stateProvinceGeoCode": "ON",
          "houseNumber": null,
          "postalCodeExt": null,
          "attnName": null,
          "countyGeoId": null,
          "cityGeoId": null,
          "postalCode": "L3V 1P5",
          "latitude": 44.606503,
          "stateProvinceGeoId": "ON",
          "contactMechId": "20656",
          "address2": null,
          "toName": "John Doe",
          "encodedAddressKey": null,
          "stateProvinceGeoName": "Ontario",
          "address1": "746 Atherley Road",
          "countryGeoCode": "CA",
          "countryGeoId": "CAN",
          "directions": null,
          "city": "Orillia",
          "municipalityGeoId": null,
          "countryGeoName": "Canada",
          "geoPointId": null
        },
        "productIdentifications": [
          {
            "idValue": "6104.42.00.10",
            "goodIdentificationTypeId": "HS_CODE",
            "lastUpdatedStamp": "2024-02-26T04:12:21-05:00",
            "productId": "10004",
            "fromDate": "2024-02-26T04:12:21-05:00",
            "thruDate": null
          },
          {
            "idValue": "44508",
            "goodIdentificationTypeId": "NETSUITE_PRODUCT_ID",
            "lastUpdatedStamp": "2024-08-13T01:37:02-04:00",
            "productId": "10004",
            "fromDate": "2024-01-08T11:20:16-05:00",
            "thruDate": null
          },
          {
            "lastUpdatedStamp": "2024-02-12T01:54:01-05:00",
            "goodIdentificationTypeId": "SHOPIFY_PROD_ID",
            "productId": "10004",
            "idValue": "47264706101532",
            "fromDate": "2024-01-08T06:53:02-05:00",
            "thruDate": null
          },
          {
            "idValue": "2120096-1DD-L",
            "productId": "10004",
            "lastUpdatedStamp": "2024-02-12T01:54:01-05:00",
            "fromDate": "2024-01-08T06:53:02-05:00",
            "goodIdentificationTypeId": "SHOPIFY_PROD_SKU",
            "thruDate": null
          },
          {
            "idValue": "2120096-1DD-L",
            "goodIdentificationTypeId": "SKU",
            "productId": "10004",
            "lastUpdatedStamp": "2025-01-28T05:14:13-05:00",
            "fromDate": "2024-01-08T06:53:02-05:00",
            "thruDate": null
          },
          {
            "idValue": "2120096-1DD-L",
            "goodIdentificationTypeId": "SKU",
            "productId": "10004",
            "fromDate": "2024-01-08T06:53:02-05:00",
            "lastUpdatedStamp": "2024-02-12T01:54:01-05:00",
            "thruDate": null
          },
          {
            "idValue": "2120096-1DD-L",
            "productId": "10004",
            "goodIdentificationTypeId": "UPCA",
            "lastUpdatedStamp": "2025-01-28T05:14:13-05:00",
            "fromDate": "2024-01-08T06:53:02-05:00",
            "thruDate": null
          },
          {
            "idValue": "2120096-1DD-L",
            "lastUpdatedStamp": "2024-01-08T06:53:02-05:00",
            "productId": "10004",
            "goodIdentificationTypeId": "UPCA",
            "fromDate": "2024-01-08T06:53:02-05:00",
            "thruDate": null
          }
        ],
        "returnItemAdjustments": [
          {
            "customerReferenceId": null,
            "shipGroupSeqId": "_NA_",
            "correspondingProductId": null,
            "createdDate": "2024-09-23T08:41:26-04:00",
            "comments": "CANADA GST/TPS",
            "includeInShipping": null,
            "orderId": "DEV12410",
            "exemptAmount": null,
            "productPromoId": null,
            "taxAuthPartyId": null,
            "lastModifiedByUserLogin": null,
            "returnAdjustmentTypeId": "RET_SALES_TAX_ADJ",
            "description": "Return Sales Tax",
            "orderAdjustmentId": "15830",
            "primaryGeoId": null,
            "taxAuthGeoId": null,
            "secondaryGeoId": null,
            "returnId": "10821",
            "sourcePercentage": 0.05,
            "returnItemSeqId": "00102",
            "createdByUserLogin": "hotwax.user",
            "lastModifiedDate": null,
            "returnAdjustmentId": "10704",
            "sourceReferenceId": null,
            "productPromoRuleId": null,
            "productFeatureId": null,
            "taxAuthorityRateSeqId": null,
            "overrideGlAccountId": null,
            "lastUpdatedStamp": "2024-11-18T06:01:16-05:00",
            "includeInTax": null,
            "productPromoActionSeqId": null,
            "amount": 3.98,
            "returnTypeId": "RTN_REFUND"
          },
          {
            "customerReferenceId": null,
            "shipGroupSeqId": "_NA_",
            "correspondingProductId": null,
            "createdDate": "2024-09-23T08:41:26-04:00",
            "includeInShipping": null,
            "orderId": "DEV12410",
            "exemptAmount": null,
            "comments": "ONTARIO HST",
            "productPromoId": null,
            "taxAuthPartyId": null,
            "lastModifiedByUserLogin": null,
            "returnAdjustmentTypeId": "RET_SALES_TAX_ADJ",
            "description": "Return Sales Tax",
            "primaryGeoId": null,
            "taxAuthGeoId": null,
            "orderAdjustmentId": "15831",
            "secondaryGeoId": null,
            "returnId": "10821",
            "sourcePercentage": 0.08,
            "returnItemSeqId": "00102",
            "amount": 6.36,
            "createdByUserLogin": "hotwax.user",
            "lastUpdatedStamp": "2024-11-18T06:01:16-05:00",
            "lastModifiedDate": null,
            "sourceReferenceId": null,
            "returnAdjustmentId": "10705",
            "productPromoRuleId": null,
            "productFeatureId": null,
            "taxAuthorityRateSeqId": null,
            "overrideGlAccountId": null,
            "includeInTax": null,
            "productPromoActionSeqId": null,
            "returnTypeId": "RTN_REFUND"
          }
        ],
        "facilityGroupMembers": [
          {
            "facilityGroupId": "AUTO_SHIPPING_LABEL",
            "fromDate": "2024-10-05T07:58:20-04:00",
            "sequenceNum": null,
            "lastUpdatedStamp": "2024-10-05T07:58:24-04:00",
            "facilityId": "BROADWAY",
            "thruDate": null
          },
          {
            "lastUpdatedStamp": "2024-10-15T11:08:42-04:00",
            "fromDate": "2024-10-15T11:08:42-04:00",
            "sequenceNum": null,
            "facilityId": "BROADWAY",
            "facilityGroupId": "FAC_GRP",
            "thruDate": null
          },
          {
            "fromDate": "2024-08-26T03:30:47-04:00",
            "facilityGroupId": "ONLINE_FAC_GRP",
            "sequenceNum": null,
            "facilityId": "BROADWAY",
            "lastUpdatedStamp": "2024-08-26T03:30:47-04:00",
            "thruDate": null
          },
          {
            "facilityGroupId": "OMS_FULFILLMENT",
            "sequenceNum": null,
            "fromDate": "2024-01-08T04:11:40-05:00",
            "lastUpdatedStamp": "2024-01-08T04:11:40-05:00",
            "facilityId": "BROADWAY",
            "thruDate": null
          },
          {
            "facilityGroupId": "PICKUP",
            "sequenceNum": null,
            "lastUpdatedStamp": "2024-11-13T08:50:58-05:00",
            "facilityId": "BROADWAY",
            "fromDate": "2024-11-13T08:50:58-05:00",
            "thruDate": null
          },
          {
            "fromDate": "2024-06-27T10:42:13-04:00",
            "sequenceNum": null,
            "facilityGroupId": "PICKUP",
            "lastUpdatedStamp": "2024-06-27T10:42:13-04:00",
            "facilityId": "BROADWAY",
            "thruDate": null
          },
          {
            "facilityGroupId": "STORES_FAC_GRP",
            "lastUpdatedStamp": "2025-01-16T14:51:05-05:00",
            "sequenceNum": 5,
            "facilityId": "BROADWAY",
            "fromDate": "2025-01-16T14:51:05-05:00",
            "thruDate": null
          },
          {
            "sequenceNum": null,
            "lastUpdatedStamp": "2024-07-25T05:20:32-04:00",
            "facilityGroupId": "US_INVENTORY",
            "fromDate": "2024-07-25T05:20:32-04:00",
            "facilityId": "BROADWAY",
            "thruDate": null
          },
          {
            "lastUpdatedStamp": "2024-03-20T06:13:09-04:00",
            "sequenceNum": null,
            "fromDate": "2024-03-20T06:13:09-04:00",
            "facilityId": "BROADWAY",
            "facilityGroupId": "_NA_",
            "thruDate": null
          }
        ]
      }
    ]
  }
]

Attributes

Header Level Attributes

Field
Description

returnId

Identifier for the return.

shopId

The Shopify Shop Id of the return

entryDate

Entry date for the return in HotWax Commerce.

returnDate

Creation date of the return in the E-commerce system.

returnChannelEnumId

Enum ID for the return channel.

completedDatetime

Date and time when the return was completed in Howax.

productStoreId

Identifier for the product store.

productStoreExternalId

External ID for the product store.

customerPartyId

Identifier for the customer party.

isShippingChargesSent

Flag indicating if shipping charges were sent.

returnAdjustments

Array of adjustments related to the return.

customerPartyIdentifications

Array of identifications for the customer party.

tenderAmount

Amount tendered for the return.

payments

Array of payments related to the return.

returnItems

Array of items being returned.

Nested Fields Within Header Level Attributes:

Nested Fields within returnAdjustments:

Field
Description

customerReferenceId

Identifier for customer reference.

amount

Amount of the adjustment.

description

Description of the adjustment.

...

More fields for the return adjustments.

Nested Fields within customerPartyIdentifications:

Field
Description

partyId

Identifier for the party.

idValue

Value of the identification.

...

More fields for the customer party identifications.

Nested Fields within payments:

Field
Description

paymentMethodTypeId

Type of payment method.

paymentMethodDescription

Description of the payment method.

statusId

Identifier for the status.

...

More fields for the payments.

Nested Attributes / Fields within returnItems:

Field
Description

returnId

Identifier for the return.

returnItemSeqId

Sequence ID for the return item.

orderId

Identifier for the order.

...

More fields for the return items.

billTo

Map of billing address details

productIdentification

List of maps for the product details of the return item

returnItemAdjustments

List of maps for the adjustments against the return item

Item Level Attributes:

Nested Fields within shipTo:

Field
Description

houseNumberExt

Extension for the house number.

contactMechId

Identifier for the contact mechanism.

postalCode

Postal code of the address.

...

More fields for the shipping address.

Nested Fields within billTo:

Field
Description

houseNumberExt

Extension for the house number.

address2

Additional address information.

postalCode

Postal code of the address.

...

More fields for the billing address.

Nested Fields within productIdentifications:

Field
Description

productId

Identifier for the product.

goodIdentificationTypeId

Type of good identification.

idValue

Value of the identification.

...

More fields for the product identifications.

Nested Fields within returnItemAdjustments:

Field
Description

customerReferenceId

Identifier for customer reference.

amount

Amount of the adjustment.

description

Description of the adjustment.

...

More fields for the return item adjustments.

NOTE: Fields like orderId, orderName, billTo and so on are stored at the item level instead of the header level as a single return can be composed of items from multiple orders of a customer. A classic example would be the case of POS returns.

Orders

Explore API and data feeds within the 'Orders' documentation.

APIs and data feeds specifically designed for order related operations in OMS. These tools provide businesses with the flexibility to integrate their systems with HotWax and automate various order-related processes.

Order Reconciliations

Explore how the Order Reconciliations API call offers insights into failed orders, aiding in Shopify to HotWax Commerce synchronization.

Provides log insights for failed orders that may not have been successfully downloaded from Shopify to HotWax Commerce. To retrieve the log details of these failed orders, make a GET request to the /solr-query endpoint.

Request

End Point https://<instance.name>.hotwax.io/api/solr-query

Example: https://demo-oms.hotwax.io/api/solr-query

Request Format

{
  "json": {
    "params": {
      "q": "docType:SHOPIFY_ORDER"
    }
  },
  "coreName": "logInsights"
}

Parameter Table

Parameter Name
Description

docType

The Type of the document

coreName

A single index or associated transaction log and configuration files

Response

Body

{
    "responseHeader": {
        "zkConnected": true,
        "status": 0,
        "QTime": 0,
        "params": {
            "json": "{\"params\":{\"q\":\"docType:SHOPIFY_ORDER\"}}",
            "_forwardedCount": "1"
        }
    },
    "response": {
        "numFound": 1,
        "start": 0,
        "numFoundExact": true,
        "docs": [
            {
                "site": "",
                "shopifyOrderName": "",
                "orderCreatedDate": "",
                "firstAttemptedImport": "",
                "docType": "",
                "ttl": "",
                "errorMessage": "",
                "timestamp": "",
                "expire_at": "",
                "document-id": "",
                "version": ""
            }
        ]
    }
}

Sample

{
    "responseHeader": {
        "zkConnected": true,
        "status": 0,
        "QTime": 0,
        "params": {
            "json": "{\"params\":{\"q\":\"docType:SHOPIFY_ORDER\"}}",
            "_forwardedCount": "1"
        }
    },
    "response": {
        "numFound": 1,
        "start": 0,
        "numFoundExact": true,
        "docs": [
            {
                "site": "https://hc-demo.myshopify.com/83950764316/orders/e218e7d5c7705560408de87178d8fa6b/authenticate?key=",
                "shopifyOrderName": "#10101011010",
                "orderCreatedDate": "1704335862000",
                "firstAttemptedImport": "January 3, 2024 10:15:12 PM",
                "docType": "SHOPIFY_ORDER",
                "ttl": "+60DAYS",
                "errorMessage": "Service [createShopifyOrder] target threw an unexpected exception (null)",
                "timestamp": "2024-01-10T11:29:31.127Z",
                "expire_at": "2024-03-10T11:29:31.127Z",
                "document-id": "0a420d2e-1d21-12b3-a0b1-ae12d1c0a420",
                "version": 17234167832143
            }
        ]
    }
}

Parameter Table

Parameter Name
Description

site

Shopify Store URL containing order details

shopifyOrderName

Unique identifier of the order in Shopify

orderCreatedDate

Date when the order was created on Shopify

firstAttemptedImport

Date when the order import from Shopify to HotWax Commerce was first attempted

docType

The type of the document

ttl

Time duration of the data, also called time to live

errorMessage

The error message for the job failure

timestamp

The timestamp for the API call

expire_at

Data expiry date

document-id

Unique identifier of the document

Check Inventory

Discover how to retrieve stock details for products at specific locations with the 'Check Inventory' subcategory.

Get the stock details of the product on the specific locations. To get the stock details, you will need to call the /checkInventory endpoint with the POST method.

Request

End Point

https://<host>/api/checkInventory

Example: https://demo-oms.hotwax.io/api/checkInventory

Header

Content-Type: application/json

Body

In case of checking a product's inventory at multiple facility.

{
  "filters": {
    "sku": "<sku>",
    "facilityId": ["<facilityId1>", "<facilityId2>", "<facilityId3>"],
    "facilityId_op": "in"
  }
}

In case of checking multiple product's inventory at single facility.

{
  "filters": {
    "sku": ["<sku1>", "<sku2>", "<sku3>"],
    "sku_op": "in",
    "facilityId": "<facilityId>"
  }
}

Sample

{
  "filters": {
    "sku": "MSH02-32-Black",
    "facilityId": "STORE_7"
  }
}
Parameter Name
Description
Required (Y/N)

sku

The SKU of the product

N

sku_op

The operator to be used for the sku field

N

productId

HotWax Commerce internal product Id

N

facilityId

The HotWax Commerce facility Id where product inventory is located

N

facilityId_op

The operator to be used for the facility Id

N

sku_op

The operator to be used for the sku field

N

Note: It is required to pass either sku or productId.

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

{
  "count": "1",
  "docs": [
    {
      "facilityId": "STORE_7",
      "atp": 1.000000
    }
  ]
}
Parameter Name
Description

count

Results count

docs

The array of results found

facilityId

The Id of the facility in HotWax

atp

The available to promise inventory of the product

BOPIS Check Inventory

BOPIS Check Inventory API

Overview

The BOPIS (Buy Online, Pick-up In Store) Check Inventory API allows you to retrieve stock details for products at specific locations. By calling the /checkBopisInventory endpoint with the POST method, you can check the availability of BOPIS inventory.

Request

Endpoint

URL: https://<host>/rest/s1/ofbiz-oms-usl/checkBopisInventory

This API uses our next generation OMS instance. All traditional instances have access to this next generation OMS by replacing "oms" with "maarg" in the host name.

Production

Current Name: demo-oms

Maarg Name: demo-maarg

UAT

Current Name: demo-uat

Maarg Name: demo-maarg-uat

Example: https://demo-maarg.hotwax.io/rest/s1/ofbiz-oms-usl/checkBopisInventory

Method

GET (Recommended if your library supports sending a body in a GET request) POST

Headers

Content-Type: application/json

Sample Request Body

Single product and facility

{
  "productStoreId": "STORE",
  "productIds": "11855",
  "internalNames": "XS-BLACK",
  "facilityIds": "114",
  "inventoryGroupId": "SHOPIFY_FAC_GRP"
}

Multiple products and facilities

{
  "productStoreId": "STORE",
  "productIds": ["11855","11856","118557"],
  "internalNames": ["XS-BLACK","S-BLACK","M-BLACK"],
  "facilityIds": ["114","115","116"],
  "inventoryGroupId": "SHOPIFY_FAC_GRP"
}

Body Parameters

Parameter
Description
Example

productStoreId

The ID of the product store

"STORE"

productIds

HotWax Commerce internal product ID

"11855"

internalNames

The well known ID of a product, usually UPC or SKU based on configuration

"XS-BLACK"

facilityIds

The HotWax Commerce facility ID where product inventory is located

"114"

inventoryGroupId

HotWax Commerce inventory group ID

"SHOPIFY_FAC_GRP"

If both productIds and internalNames are passed, the value of productIds will be honored.

Select Products

Products can be queried in the inventory API by both their HotWax ID or their internalName. The internal name refers to the UPC or SKU, whichever one is selected as a primary identifier during product configuration. While both fields are optional, one is requried to obtain a result.

productStoreId

Product Store represents a brand in HotWax Commerce. To obtain possible values, log into HotWax Commerce and view the product store list page for possible values.

inventoryGroupId Inventory groups are used to segregate inventory for different channels of sales. Obtain the inventory group ID by logging into HotWax Commerce Facilities App and browsing inventory groups.

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

ATP zeroed out due to the inventory checks

{
  "atp": 0.0,
  "computedAtp": 0.0,
  "decisionReason": "AllowPickupFacility"
  "decisionReasonDesc": "Pickup is not allowed for product 11855 at facility 115."
}

Possible decisionReason explanation

Decision Reason
Description

ProductStore

The facility is not associated with the product store.

PickUpFacility

The facility does not have PickUp enabled. Add it to the PickUp facility group to enable pickup.

InventoryGroup

The facility where the product is located does not cater its inventory to that channel.

AllowPickupInventoryGroup

Pickup is not allowed globally for the inventory group.

AllowPickupFacility

The facility where the product inventory is located is disabled for catering to BOPIS orders.

Each Decision Reason also comes with a detailed log of why the given check failed.

  1. ProductStore - Facility ${facilityId} is not associated with Product Store ${productStoreId}.

  2. PickUp Facility - Facility ${facilityId} is not a member of a PICKUP Facility Group.

  3. Inventory Group - Facility ${facilityId} is not a member of ${inventoryGroupId} channel.

  4. Product Inventory Group allowPickup - Pickup is not allowed for product ${productId} ${inventoryGroupId} inventory group.

  5. Product Facility allowPickup - Pickup is not allowed for product ${productId} at facility ${facilityId}.

ATP

{
  "atp": 50.0,
  "safetyStock": 5.0,
  "computedAtp": 45.0,
}

Packing Slip PDF

Learn how to efficiently generate packing slips in PDF format for your shipments.

Downloads a packing slip in PDF format for the shipment. To download the shipping label PDF, you will need to call the /PackingSlip.pdf endpoint with the POST method.

Request

Endpoint

https://<host>/api/PackingSlip.pdf?shipmentId=<>

Header

Params

 https://demo-oms.hotwax.io/api/PackingSlip.pdf?shipmentId=<>
Parameter
Description
Required (Y/N)

shipment ID

The ID of the shipment of groups

Yes

Response

Downloads a packing slip in pdf format which is handed over with the shipment.

users.hotwax.io
video

Store Lookup

Discover how the Store Lookup API facilitates finding stores accepting BOPIS orders near the customer's location using the POST method.

The API allows to look up the stores accepting BOPIS orders near the customer’s location using the POST method.

Request

Endpoint

https://< host >/api/storeLookup

Example: Host: https://demo-oms.hotwax.io/api/storeLookup

Header

Content-Type: application/json

Body

{
  "viewSize": 40,
  "filters": ["storeType: RETAIL_STORE"],
  "point": “lat,lon”,
  "distance": 50,
  "sortBy": "storeName asc",
  "keyword": "value",
  "fieldsToSelect": <values>
}

Parameters

Parameter
Description
Required (Y/N)

viewSize

The total number of results in the API response

N

filter

Filter records based on the passed parameters

N

point

The latitude-longitude of a specific location to find nearby stores

N

distance

The distance from the passed latitude-longitude

N

sortBy

Sort data based on the attribute, for example: "storeDistance asc" sorts results by distance

N

keyword

Keyword search (only on storeName, storeCode, and externalId)

N

fieldsToSelect

The list of fields to select, all the fields can be filtered in response

N

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

"response": 
{
  "numFound": 1,
  "start": 0,
  "numFoundExact": true,
  "docs": [
   {
    "docType": "STORE",
    "storeCode": "524",
    "Identifier": "524",
    "docType-Identifier": "STORE-524-STORE-524",
    "storeType": "RETAIL_STORE",
    "storeName": "Orlando",
    "externalId": "524",
    "primaryFacilityGroupId": "10862657599",
    "primaryFacilityGroupName": "Not naked",
    "primaryShopifyShopId": "10862657599",
    "10862657599_pref": "true",
    "fac_grp_pref": "true",
    "address1": "8200 Vineland Ave.,",
    "city": "Orlando",
    "postalCode": "32821",
    "country": "United States",
    "countryCode": "USA",
    "state": "FlorIda",
    "stateCode": "FL",
    "latlon": "28.3873236,-81.4924445",
    "monday_open": "10:00:00",
    "monday_close": "21:00:00",
    "tuesday_open": "10:00:00",
    "tuesday_close": "21:00:00",
    "wednesday_open": "10:00:00",
    "thursday_open": "10:00:00",
    "thursday_close": "21:00:00",
    "frIday_open": "10:00:00",
    "frIday_close": "21:00:00",
    "saturday_open": "10:00:00",
    "saturday_close": "21:00:00",
    "sunday_open": "11:00:00",
    "sunday_close": "19:00:00",
    "updatedDatetime": "2023-01-31T05:52:08.794Z",
    "_version_": 1756516139717885953,
    "_root_": "STORE-524-STORE-524"
   }
  ]
 }
Parameters
Description

numFound

The number of results found

docs

The array of results found

docType

Reference index

storeCode

The ID of the facility (store) in HotWax

identifier

DocType-Identifier

country

Country

storeType

The type of the store

storeName

Store Name

externalId

The Id of the store in the external reference source

primaryFacilityGroupId

The Id of the primary facility group

primaryFacilityGroupName

primaryShopifyShopId

The Id of the primary Shopify Shop

address1

The address of the store

city

City

postalCode

Postal Code

country

Country

countryCode

Country Code

stateCode

State Code

latLon

The latitude and longitude of the facility

<day_of_week>_open

The opening time of the store on the day of a week

<day_of_week>_close

The closing time of the store on the day of a week

Note:

Filters

Filter is a parameter that allows you to narrow down the results of a query or search to only include items that meet specific criteria. For storeLookup API, users can filter results for each parameter given in the response:

Parameter Name
Description

country

Country

storeType

The type of the store

storeName

Store Name

externalId

The Id of the store in the external reference source

primaryFacilityGroupId

The Id of the primary facility group

primaryFacilityGroupName

The name of the primary facility group

primaryShopifyShopId

The Id of the primary Shopify Shop

city

City

postalCode

Postal Code

countryCode

Country Code

stateCode

State Code

latlon

The latitude and longitude of the facility

Spaces in Filter Values: When filtering by parameters containing spaces (e.g., storeName, city, primaryFacilityGroupName), replace spaces with + (plus signs) for the storeLookUp API.

Example: To filter for the store name "Time Square", use: storeName: Time+Square

Valid values of storeType

  • RETAIL

  • WAREHOUSE

  • RETAIL_STORE

  • OUTLET_WAREHOUSE

  • OUTLET_STORE

  • DISTRIBUTION_CENTER

Returns

Discover how returns can be created in HotWax and how HotWax posts these returns to external systems.

Introduction

Shipping Check Inventory

Overview

The Shipping Ckeck Inventory API allows to retrive the inventory details for the products at specific locations. By calling the /checkShippingInventory endpoint of our next generation OMS with the POST/GET method, you can check the availability of the inventory available for shipping.

Request

Endpoint

URL: https://<host>/rest/s1/ofbiz-oms-usl/checkShippingInventory

This API uses our next generation OMS instance. All traditional instances have access to this next generation OMS by replacing "oms" with "maarg" in the host name.

Production

Current Name: demo-oms

Maarg Name: demo-maarg

Example: https://demo-maarg.hotwax.io/rest/s1/ofbiz-oms-usl/checkShippingInventory

UAT

Current Name: demo-uat

Maarg Name: demo-maarg-uat

Methods

  • GET: When passing params in the URL

  • POST: When passing JSON body in the request

Headers

Content-Type: application/json

Sample Request Body

Single product and facility

Using POST Method

{
  "productStoreId": "STORE",
  "productIds": "11855",
  "internalNames": "XS-BLACK",
  "facilityIds": "114",
  "inventoryGroupId": "SHOPIFY_FAC_GRP"
}

Using GET Method

https://<host>/rest/s1/ofbiz-oms-usl/checkShippingInventory?productStoreId=STORE&productIds=11855&internalNames=XS-BLACK&facilityIds=114&inventoryGroupId=SHOPIFY_FAC_GRP

Multiple products and facilities

Using POST Method

{
  "productStoreId": "STORE",
  "productIds": ["11855", "11856", "118557"],
  "internalNames": ["XS-BLACK", "S-BLACK", "M-BLACK"],
  "facilityIds": ["114", "115", "116"],
  "inventoryGroupId": "SHOPIFY_FAC_GRP"
}

Using GET Method

https://<host>/rest/s1/ofbiz-oms-usl/checkShippingInventory?productStoreId=STORE&productIds=11855,11856,118557&internalNames=XS-BLACK,S-BLACK,M-BLACK&facilityIds=114,115,116&inventoryGroupId=SHOPIFY_FAC_GRP

Body Parameters

Parameter
Description
Example

productStoreId

The ID of the product store

"STORE"

productIds

HotWax Commerce internal product ID

"11855"

internalNames

The well-known ID of a product, usually UPC or SKU based on configuration

"XS-BLACK"

facilityIds

The HotWax Commerce facility ID where product inventory is located

"114"

inventoryGroupId

HotWax Commerce inventory group ID

"SHOPIFY_FAC_GRP"

Notes

  • Either productIds and internalNames value is required, If both values are passed, then the value of productIds will be honored.

  • This API does not necessarily require the inventoryGroupId and facilityIds, If both values are not provided API will return an inventory of products at all the locations.

Select Products

Products can be queried in the inventory API by both their HotWax ID or their internalName. The internal name refers to the UPC or SKU, whichever one is selected as a primary identifier during product configuration. While both fields are optional, one is required to obtain a result.

productStoreId

Product Store represents a brand in HotWax Commerce. To obtain possible values, log into HotWax Commerce and view the product store list page for possible values.

inventoryGroupId

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

Success ATP Response

{
    "resultList": [
        {
            "productId": "10560",
            "totalAtp": 13,
            "totalComputedAtp": 13,
            "totalSafetyStock": 0.0,
            "facilities": [
                {
                    "facilityId": "100",
                    "safetyStock": 0.0,
                    "computedAtp": 6,
                    "atp": 6
                },
                {
                    "facilityId": "57",
                    "safetyStock": 0.0,
                    "computedAtp": 7,
                    "atp": 7
                }
            ]
        }
    ]
}

ATP zeroed out due to the inventory checks for products at locations

{
    "resultList": [
        {
            "productId": "10560",
            "totalAtp": 0.0,
            "totalComputedAtp": 0.0,
            "totalSafetyStock": 0.0,
            "facilities": [
                {
                    "decisionReasonDesc": "The inventory for product 10560 at facility RETAIL_WAREHOUSE is not available",
                    "facilityId": "RETAIL_WAREHOUSE",
                    "safetyStock": 0.0,
                    "computedAtp": 0.0,
                    "atp": 0.0,
                    "decisionReason": "ProductFacility"
                }
            ]
        }
    ]
}

ATP zeroed out due to brokering being disabled for the channel globally

{
    "resultList": [
        {
            "productId": "10560",
            "inventoryGroupId": "FAC_GRP",
            "decisionReason": "AllowBrokeringInventoryGroup",
            "decisionReasonDesc": "Brokering of the product 10560 for the inventory group FAC_GRP is not allowed globally."
        }
    ]
}

Possible decisionReason explanation

Decision Reason
Description

ProductStore

The facility is not associated with the product store.

ProductFacility

The facility does not have PickUp enabled. Add it to the PickUp facility group to enable pickup.

InventoryGroup

The facility where the product is located does not cater its inventory to that channel.

AllowBrokeringInventoryGroup

Brokering is not allowed globally for the given inventory group.

AllowBrokeringFacility

The facility where the product inventory is located is disabled for brokering.

Each Decision Reason also comes with a detailed log of why the given check failed.

  1. ProductStore - The facility ${facilityId} is not associated with Product Store ${productStoreId}.

  2. Product Facility - The inventory for product ${productId} at facility ${facilityId} is not available.

  3. Inventory Group - The facility ${facilityId} where the product ${productId} is located does not cater its inventory to that channel.

  4. Inventory Group allowBrokering - Brokering of the product ${productId} for the inventory group ${inventoryGroupId} is not allowed globally.

  5. Product Facility allowBrokering - The facility ${facilityId} where the product ${productId} inventory is located is disabled to cater to shipping orders.

Create Picklist

Learn how to create picklists for order item pickups efficiently within the 'Brokering WIP' documentation.

Creates a picklist of the order items to be picked up. To create a picklist, you will need to call the /createPicklist endpoint with the POST method.

Request

Endpoint

https://<host>/api/createPicklist

Example: https://demo-oms.hotwax.io/api/createPicklist

Header

Body

Note: Pass the data in form format.

Response

Header

Body

Import

Explore API and data feeds within the 'inbound shipment documentatoin' documentation.

File Structure:

Shipment Types

TBD

Sample Shipment file

Update Inventory

Learn how to update product inventory in HotWax by logging variances of inputted amounts.

Updates the inventory of products in HotWax by logging a variance of the inputted amount. To update inventory you will need to call the endpoint with the POST method.

Example:

Request

End Point

https://<host>/api/service/updateInventoryByIdentification

Header

Content-Type: application/json

Authentication

To access this endpoint, you need to include the authorization token in the request header.

Authorization: Bearer <access_token>

Body

Sample:

Table of valid variance reasons and their IDs:

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

Sample:

Retry Shipping Label

Discover how to redownload shipping labels in PDF format for completed shipments with HotWax Commerce.

Redownloads shipping label in PDF format for the completed shipment. To re-download the shipping label PDF, you will need to call the /retryShippingLabel endpoint with the GET method.

Request

Endpoint

https://<host>/api/retryShippingLabel

Header

Params

Response

Redownloads a shipping label for the shipment in pdf format.

Shipping Label PDF

Explore API and data feeds within the 'Shipping Label PDF' documentation.

Downloads a shipping label in PDF format for the shipment. To download the shipping label PDF, you will need to call the /ShippingLabel.pdf endpoint with the POST method.

Request

Endpoint

https://<host>/api/ShippingLabel.pdf?shipmentId=<>

Header

Params

Response

Downloads a shipping label in pdf format which is pasted on the shipment.

Add Shipment Box

Learn how to add a shipment box for order fulfillment with the 'Add Shipment Box' feature.

Adds a shipment box for the order for fulfillment. To add a shipment box, you will need to call the /addShipmentPackage endpoint with the POST method.

Request

Endpoint

https://<host>/api/addShipmentPackage

Example: https://demo-oms.hotwax.io/api/addShipmentPackage

Header

Body

Response

Header

Body

Get Online ATP of Products

Discover how to retrieve online ATP for products at specific locations with the 'getProductOnlineAtp' API

Store Associates need to access the online Available to Promise (ATP) inventory of products on their POS systems for sendsales orders. The getProductOnlineAtp API facilitates retrieving the online ATP of a product from all locations except the one it's being ordered from. The API does not count the Online ATP of a facility in the following scenarios:

  1. Inventory for the store placing the order.

  2. Inventory from stores with sell online turned off.

  3. Inventory for an SKU where the inventory is turned off in specific locations.

To fetch the online ATP details, make a POST request to the /getProductOnlineAtp endpoint.

Request

End Point

https://<host>/api/service/getProductOnlineAtp

Example https://demo-oms.hotwax.io/api/service/getProductOnlineAtp

Header

Content-Type: application/json

Body

Sample

Parameters

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

Sample

Parameters

Create Return

To create a return for a customer's order that has already been fulfilled and completed, you will need to call the /createReturn endpoint with the POST method.

Request

Endpoint

  • POST: https://{host}/api/createReturn

Header

  • Content-Type: application/json

Body

In the request body, include the information necessary for creating a return, including all the parameters listed below:

Types of Return Adjustments:

Return adjustments are used to categorize different return-level charges. By storing all adjustments as types of adjustments that can be applied to the return, instead of including them in the return header, they can be extended based on the needs of custom implementations and integrations.

Return channels

The two return channels are as follows:

Sample response

Response

Header

  • Content-Type: application/json

Body

The response will include all the parameters provided in the request body, along with any error messages and login information.

Sample response

HotWax's provides the ability to create a return in HotWax for returns which have been processed and completed in the integrated E-commerce system.

The returns financial feed, then, generates necessary data to be communicated with external systems in a JSON format. A sample of the feed can be found on the section.

are used to segregate inventory for different channels of sales. Obtain the inventory group ID by logging into HotWax Commerce Facilities App and browsing inventory groups.

Parameter
Description
Required (Y/N)
Parameter
Description
Field Name
Description
Example
Shipment Type
Parent Type
Description

Example:

To learn more about Bearer token authentication, read this

Parameters
Description
Required (Y/N)
Variance Reason ID
Description
Parameter
Description
Required (Y/N)
Parameter
Description
Required (Y/N)
Parameter
Description
Required (Y/N)
Parameter
Description
Parameter Name
Description
Parameter Name
Description
Return Adjustment Type
Description
Enum Id
Enum Type Id
Description
Enum Name
Sequence Id
Create Return API
Returns Financial Feed
Inventory groups
facilityId: WH
facilityId_o_0: WH
shipmentMethodTypeId_o_0: STANDARD
itemStatusId_o_0: PICKITEM_PENDING
shipGroupSeqId_o_0: 00002
orderId_o_0: 10175
orderItemSeqId_o_0: 00101
productId_o_0: 10002
quantity_o_0: 1
inventoryItemId_o_0: 10120
picked_o_0: 1
_rowSubmit_o_0: Y
pickerIds: 10000

facilityId

The ID of the facility

facilityId_o_0

The ID of the picklist bin

shipmentMethodTypeId_o_0

The ID of the shipment method type

itemStatusId_o_0

The ID of the item status

shipGroupSeqId_o_0

The ID of the ship group sequence

orderId_o_0

The ID of the order

orderItemSeqId_o_0

The ID of the order item sequence

productId_o_0

The ID of the product

quantity_o_0

The quantity of the items

inventoryItemId_o_0

The ID of the inventory item

picked_o_0

The number of items to be picked

_rowSubmit_o_0

pickerIds

The ID of the picker

{
    "quantity_o_0": "1",
    "orderItemSeqId_o_0": "00101",
    "picklistId_o_0": "10112",
    "facilityId_o_0": "WH",
    "shipGroupSeqId_o_0": "00002",
    "orderId_o_0": "10175",
    "picklistBinId_o_0": "10122",
    "facilityId": "WH",
    "pickerIds": "10000",
    "picked_o_0": "1",
    "shipmentMethodTypeId_o_0": "STANDARD",
    "inventoryItemId_o_0": "10120",
    "itemStatusId_o_0": "PICKITEM_PENDING",
    "picklistId": "10112",
    "picklistBinId": "10122",
    "_rowSubmit_o_0": "Y",
    "productId_o_0": "10002"
}

picklistId_o_0

The ID of the picklist

picklistBinId_o_0

The ID of the picklist bin

itemStatusId_o_0

The ID of the item status

picklistId

The ID of the picklist

picklistBinId

The ID of the picklist bin

productId_o_0

The ID of the product

external-shipment-id

Unique identifier for the external shipment

12009298

product-sku

Product SKU (internal name)

26897

quantity

Quantity of the product being transferred

11

origin-facility-id

ID of the originating facility

116

destination-facility-id

ID of the destination facility

281

item-external-id

External identifier for the item

1

tracking-number

Tracking number associated with the shipment

788944217767

shipment-attribute

Additional attributes (e.g., EXTERNAL_ORDER_ID)

EXTERNAL_ORDER_ID:TO0005374

shipment-type

Type of the shipment (e.g., IN_TRANSFER)

IN_TRANSFER

DROP_SHIPMENT

Drop Shipment

TRANSFER

Transfer

INCOMING_SHIPMENT

Inbound Shipment

OUTGOING_SHIPMENT

Outbound Shipment

PURCHASE_SHIPMENT

INCOMING_SHIPMENT

Purchase Shipment

SALES_RETURN

INCOMING_SHIPMENT

Sales Return Shipment

IN_TRANSFER

INCOMING_SHIPMENT

Inbound Transfer Shipment

SALES_SHIPMENT

OUTGOING_SHIPMENT

Sales Shipment

OUT_TRANSFER

OUTGOING_SHIPMENT

Outbound Transfer Shipment

PURCHASE_RETURN

OUTGOING_SHIPMENT

Purchase Return Shipment

Inventory in HotWax: 10
Variance: -2
Updated inventory in HotWax: 8
{
  "facilityId": ,
  "availableDelta": ,
  "idType": ,
  "idValue": ,
  "locationSeqId": ,
  "varianceReasonId":
}

{
  "facilityId": "WH",
  "availableDelta": 4,
  "idType": "UPCA",
  "idValue": "30065245099",
  "locationSeqId": "TLTLTLLL01",
  "varianceReasonId": "POS_SALE"
}
  

idType

The type of product identifier. Currently supported ID types are SKU, UPCA,Shopify_Prod_ID

Y

idValue

The value of product identifier

Y

availableDelta

The variance in inventory quantity(delta)

Y

facilityId

The external facility ID where inventory item needs to be updated

Y

locationSeqId

The location ID in the facility where inventory item needs to be updated

Y

varianceReasonId

The ID of the reason that caused variance in inventory

Y

MISMATCH

Inventory does not match the available SKU

NOT_IN_STOCK

SKU is not available

NO_VARIANCE_LOG

Use to pass null variance where variance field is required but not used

REJ_RSN_DAMAGED

Ordered SKU is rejected due to inventory damage

POS_SALE

Inventory consumed by sales made on an external point of sale system in the store

VAR_DAMAGED

Reduce damaged inventory from available quantity

VAR_LOST

SKU inventory is lost

VAR_FOUND

Lost SKU inventory is found

WORN_DISPLAY

SKU inventory is worn and unsuable from being on display

VAR_MANUAL

SKU inventory adjustment is done manually

{
   {
    "facilityId": ,
    "availableDelta": ,
    "idType": ,
    "idValue": ,
    "locationSeqId": ,
    "varianceReasonId": ,
  },
  "webSiteId": ""
}
{
  {
    "facilityId": "WH",
    "availableDelta": 4,
    "idType": "UPCA",
    "idValue": "30065245099",
    "locationSeqId": "TLTLTLLL01",
    "varianceReasonId": "POS_SALE"
  },
  "webSiteId": "API"
}
 https://demo-oms.hotwax.io/api/retryShippingLabel?shipmentId=<>

shipment ID

The ID of the shipment of groups

Yes

 https://demo-oms.hotwax.io/api/ShippingLabel.pdf?shipmentId=<>

shipment ID

The ID of the shipment of groups

Yes

{
  "picklistBinId": "10094",
  "shipmentBoxTypeId": "YOURPACKNG"
}

picklistBinId

The ID of the picklist bin

shipmentBoxTypeId

The ID of the shipment box type

{
  "shipmentPackageSeqId": "00001",
  "shipmentBoxTypeId": "YOURPACKNG",
  "shipmentRouteSegmentId": "00001",
  "shipmentId": "10252",
  "picklistBinId": "10094",
  "_EVENT_MESSAGE_": "Box added successfully"
}

shipmentPackageSeqId

The ID of the shipment package sequence

shipmentRouteSegmentId

The ID of the shipment route segment

shipmentId

The ID of the shipment

_EVENT_MESSAGE_

The communication message of the event

{
  "idType": "<SKU>",
  "idValue": "<SKU>",
  "productStoreId": "<STORE_ID>",
  "conditionMap": {
    "externalFacilityId_value": "<External Facility ID>",
    "externalFacilityId_op": "<operator>"
  }
}
{
  "idType": "SKU",
  "idValue": "MSH02-32-Black",
  "productStoreId": "DEMO_STORE",
  "conditionMap": {
    "externalFacilityId_value": "101",
    "externalFacilityId_op": "notEqual"
  }
}

idType

Specifies the type of identifier being used (e.g., "SKU")

idValue

The specific value of the SKU being referenced

productStoreId

Identifies the store or location within the system where the product is available

conditionMap

Contains conditions for filtering or specifying attributes related to the request

externalFacilityId_value

The value of the external facility ID

externalFacilityId_op

The operation or condition applied to the external facility ID (e.g., "notEqual")

{
    "onlineAtp": "<Value>"
}
{
    "onlineAtp": 100
}

onlineAtp

The online available to promise inventory of the product

{
    "payLoad": {
        "externalId": "",
        "type": "",
        "returnDate": "",
        "customerId": "",
        "externalCustomerId": "",
        "companyId": "",
        "companyExternalId": "",
        "status": "",
        "currencyCode": "",
        "grandTotal": ,
        "tags": [ ],
        "note": "",
        "returnIdentifications": [
            {
                "returnIdentificationTypeId": "",
                "returnIdentificationDesc": "",
                "idValue": ""
            }
        ],
        "shipFrom": {
            "postalAddress": {
                "id": "",
                "externalId": ""
            }
        },
        "shipTo": {
            "facilityId": ""
        },
        "items": [
            {
                "id": "",
                "sku": "",
                "idType": "",
                "idValue": "",
                "itemExternalId": "",
                "itemSeqId": "",
                "itemTypeId": "",
                "status": "",
                "orderId": "",
                "orderExternalId": "",
                "orderName": "",
                "orderItemSeqId": "",
                "orderItemExternalId": "",
                "quantity": ,
                "reason": "",
                "returnType": "",
                "restockType": "",
                "price": ,
                "itemAdjustments": [
                    {
                        "returnAdjustmentTypeId": "",
                        "amount": 
                    },
                    {
                        "type": "",
                        "comments": "",
                        "description": "",
                        "amount": "",
                        "sourcePercentage": ""
                    }
                ]
            }
        ],
        "returnAdjustment": [
            {
                "orderId": "",
                "orderExternalId": "",
                "id": "",
                "type": "",
                "comments": "",
                "description": "",
                "amount": "",
                "sourcePercentage": ""
            }
        ]
    }
}

Parameter Name

Description

externalId

Order identification in the external system (e.g. Shopify or Netsuite)

customerId

Customer’s Identification in HotWax Commerce (partyId)

companyId

Identification for the Company owning the brand

currencyCode

Currency unit of measurement (USD, INR, YEN, etc.)

facilityId

Facility where order is returned

idType

Identification Type

orderId

Unique HotWax Commerce Order Identification

items

List of Order Items

orderName

Shopify Order Name

orderItemSeqId

Order Item Sequence

status

Current status of the return

grandTotal

Sum total of return items

returnIdentificationTypeId

Global Identification for the return (“SHOPIFY_RTN_ID”)

IdValue (in returnIdentification)

Unique Value for return identification

idType

Global Identification Type (SKU, INVOICE_EXPORT, ISBN, UPCA, UPCE)

idValue

Unique Id value for the global identification

shipFrom

Customer's address

shipTo

Destination address for returned order

sku

SKU for returned item

id (in item list)

Product id for that item

price

Price of the individual item

quantity

Product Quantity

orderItemExternalId (in item list)

Order Item id for external system (Shopify or Netsuite)

itemAdjustments

Record of adjustments (taxes or discounts) applied on the particular item

type

Type of return adjustments

returnAdjustments

Record of adjustments applied on the return

RET_ADD_FEATURE_ADJ

Return Additional Feature

RET_DEPOSIT_ADJ

Return Deposit Adjustment

RET_DISCOUNT_ADJ

Return Discount

RET_DUTY_ADJ

RMA Duty

RET_EXT_PRM_ADJ

Return External Promotion Adjustment

RET_FEE_ADJ

Return Fee

RET_MAN_ADJ

Return Manual Adjustment

RET_MISC_ADJ

Return Miscellaneous Charges

RET_MKTG_PKG_ADJ

Return Marketing Package Adjustment

RET_PROMOTION_ADJ

Return Promotion

RET_REPLACE_ADJ

Return Replacement

RET_RMA_ADJ

RMA Fee Adjustment

RET_SALES_TAX_ADJ

Return Sales Tax

RET_SHIPPING_ADJ

Return S&H

RET_SURCHARGE_ADJ

Return Surcharge

RET_VAT_PC_ADJ

Return VAT Price Correction

RET_VAT_TAX_ADJ

Return VAT Tax

RET_WARRANTY_ADJ

Return Warranty

ECOM_RTN_CHANNEL

RETURN_CHANNEL

Ecom Return Channel

01

POS_RTN_CHANNEL

RETURN_CHANNEL

POS Return Channel

02


{
   "payLoad": {
       "externalId": "5758438048028",
       "type": "CUSTOMER_RETURN",
       "customerId": "10317",
       "externalCustomerId": "",
       "companyId": "COMPANY",
       "companyExternalId": "",
       "status": "RETURN_RECEIVED",
       "currencyCode": "CAD",
       "grandTotal": 150.01,
       "returnIdentifications": [
           {
               "returnIdentificationTypeId": "SHOPIFY_RTN_ID",
               "returnIdentificationDesc": "MarketPlace Return",
               "idValue": "5758438048028"
           }
       ],
       "shipFrom": {
           "postalAddress": {
               "id": "",
               "externalId": ""
           }
       },
       "shipTo": {
           "facilityId": "KITST"
       },
       "items": [
           {
               "id": "10243",
               "sku": "",
               "idType": "UPCA",
               "idValue": "1110352-7AY-M",
               "itemExternalId": "",
               "itemSeqId": "",
               "itemTypeId": "PRODUCT_ORDER_ITEM",
               "status": "RETURN_RECEIVED",
               "orderId": "FAO11428",
               "orderExternalId": "5758438048028",
               "orderName": "101010236",
               "orderItemSeqId": "00101",
               "orderItemExternalId": "",
               "quantity": 1,
               "price": 89.5
           }
       ]
   }
}

_LOGIN_PASSED_": "T{
   "_ERROR_MESSAGE_": "",
   "payLoad": {
       "externalId": "5758438048028",
       "type": "CUSTOMER_RETURN",
       "customerId": "10317",
       "externalCustomerId": "",
       "companyId": "COMPANY",
       "companyExternalId": "",
       "status": "RETURN_RECEIVED",
       "currencyCode": "CAD",
       "grandTotal": 150.01,
       "returnIdentifications": [
           {
               "returnIdentificationTypeId": "SHOPIFY_RTN_ID",
               "returnIdentificationDesc": "MarketPlace Return",
               "idValue": "5758438048028"
           }
       ],
       "shipFrom": {
           "postalAddress": {
               "id": "",
               "externalId": ""
           }
       },
       "shipTo": {
           "facilityId": "KITST"
       },
       "items": [
           {
               "id": "10243",
               "sku": "",
               "idType": "UPCA",
               "idValue": "1110352-7AY-M",
               "itemExternalId": "",
               "itemSeqId": "",
               "itemTypeId": "PRODUCT_ORDER_ITEM",
               "status": "RETURN_RECEIVED",
               "orderId": "FAO11428",
               "orderExternalId": "5758438048028",
               "orderName": "101010236",
               "orderItemSeqId": "00101",
               "orderItemExternalId": "",
               "quantity": 1,
               "price": 89.5
           }
       ]
   },
   "USERNAME": "hotwax.user",
   "RUE"
}

Outstanding Orders

Discover how HotWax Commerce fetches a comprehensive list of outstanding orders brokered at a facility for fulfillment.

Fetches a comprehensive list of all orders that are brokered at a facility for fulfillment. To get the outstanding orders, you will need to call the /solr-query endpoint with the POST method.

Request

Endpoint

https://<host>/api/solr-query

Example: https://demo-oms.hotwax.io/api/solr-query

Header

Body

{
  "json": {
    "params": {
      "rows": 1,
      "group": true,
      "group.field": "orderId",
      "group.limit": 1000,
      "group.ngroups": true,
      "defType": "edismax",
      "q.op": "AND",
      "qf": "orderId"
    },
    "query": "(* *)",
    "filter" : [
      "docType: OISGIR",
      "quantityNotAvailable: 0",
      "orderTypeId: SALES_ORDER",
      "orderStatusId: ORDER_APPROVED",
      "isPicked: N",
      "-shipmentMethodTypeId: STOREPICKUP",
      "-fulfillmentStatus: Cancelled", 
      "facilityId: NN_WH"
    ],
  }
}
Parameter
Description
Required (Y/N)

rows

The number of groups.

No

group

Filter to group orders.

Yes

group.field

The field to be grouped.

Yes

group.limit

The maximum number of items allowed in the group.

Yes

group.ngroups

The number of groups that have matched the query in the results. The default value is false.

No

defType

Selects the query parser to be used to process the query.

No

q.op

Specifies the default operator for query expressions, overriding the default operator specified in the Schema. Possible values are "AND" or "OR".

No

qf

The query fields.

No

docType

Reference index.

No

quantityNotAvailable

The quantity of the item that is not available.

Yes

orderTypeId

The ID of the order type in HotWax.

Yes

orderStatusId

The ID of the order status in HotWax.

Yes

isPicked

The status of the order if picked or not. Default value: N.

No

shipmentMethodTypeId

The ID of the shipment method type.

No

fulfillmentStatus

The status of fulfilment.

No

facilityId

The ID of the facility.

No

Response

Header

Body

{
  "grouped": {
    "orderId": {
      "matches": 58,
      "ngroups": 41,
      "groups": [
        {
          "groupValue": "NN11323",
          "doclist": {
            "numFound": 2,
            "start": 0,
            "docs": [
              {
                "orderId": "NN11323",
                "orderItemSeqId": "00001",
                "shipGroupSeqId": "00001",
                "inventoryItemId": "11846",
                "reservedDatetime": "2020-08-04T11:13:08.265Z",
                "itemQuantity": 1.0,
                "quantityNotAvailable": 0.0,
                "productId": "11993",
                "keywordSearchText": [
                    "11993",
                    "Erika Running Short-32-Red"
                ],
                "productName": "Erika Running Short-32-Red",
                "spellchecker": "Erika Running Short-32-Red",
                "productSku": "WSH12-32-Red",
                "virtualProductName": "Erika Running Short",
                "uniqueOrderItemsCount": 2.0,
                "isPicked": "N",
                "fulfillmentStatus": "Created",
                "orderDate": "2020-08-04T11:13:05.001Z",
                "orderTypeId": "SALES_ORDER",
                "productStoreId": "NN_ECOM_STORE",
                "orderStatusId": "ORDER_APPROVED",
                "customerId": "10333",
                "customerName": "Mohammad Kathawala",
                "shipmentMethodTypeId": "STANDARD",
                "shipmentMethodTypeDesc": "Standard",
                "shipmentMethodTypeSeqNum": 5.0,
                "facilityId": "NN_WH",
                "facilityName": "California Warehouse",
                "facilityTypeId": "WAREHOUSE",
                "companyIds": [
                    "NN_COMPANY"
                ],
                "orderIdentifications": [
                    "DC_ORDER_ID/106605"
                ],
                "docType": "OISGIR",
                "identifier": "NN11323-00001-00001-11846",
                "docType-identifier": "OISGIR-NN11323-00001-00001-11846",
                "_version_": 1720557058047082496
              }
            ]
          }
        }
      ]
    }
  }
}
Parameter
Description

orderId

The ID of the order.

orderItemSeqId

The ID of the order item sequence.

shipGroupSeqId

The ID of the ship group sequence.

inventoryItemId

The ID of the inventory item.

reservedDatetime

The time and date of reservation.

itemQuantity

The item quantity.

productId

The ID of the product in HotWax.

keywordSearchText

The keyword used for search.

productName

The name of the product.

spellchecker

The spellchecker.

productSku

The SKU ID of the product.

virtualProductName

The name of the parent product.

uniqueOrderItemsCount

The count of the unique order items.

isPicked

Indicates whether the item has been picked or not.

fulfillmentStatus

The current fulfillment status of the item.

orderDate

The date when the order was placed.

orderTypeId

The ID of the order type.

productStoreId

The ID of the product store.

orderStatusId

The ID of the order status.

customerId

The ID of the customer.

customerName

The name of the customer.

shipmentMethodTypeId

The ID of the shipment method type.

shipmentMethodTypeDesc

The description of the shipment method type.

shipmentMethodTypeSeqNum

The sequence number of the shipment method type.

facilityId

The ID of the facility.

facilityName

The name of the facility.

facilityTypeId

The ID of the facility type.

companyIds

The IDs of the companies associated with the order.

orderIdentifications

The secondary unique identifier of the order.

docType

The type of the document.

identifier

The identifier of the document.

docType-identifier

The type and identifier of the document separated by a hyphen.

Buy Online Pickup In Store

Explore APIs and data feeds powering the Buy Online Pickup in Store (BOPIS) experience.

The APIs and data feeds that connect to deliver Buy Online Pickup in Store experience.

Update and Import File

Explore API and data feeds within the 'Update and Import File' documentation.

Imports shipped order details with the tracking code. To import file, you will need to call the /uploadAndImportfile endpoint with the POST method.

Request

Endpoint

https://<host>/api/uploadAndImportfile

Example: https://demo-oms.hotwax.io/api/uploadAndImportfile

Header

Body

uploadedFile: (blob)
configId: IMP_TRACK_NUM

Note: Provide this information in form format

Parameter
Description
Required (Y/N)

uploadedFile

The uploaded file

Y

configId

The datamanager configuration ID which is useed to import files

Y

Response

Header

Body

{
  "uploadFileContentId": "",
  "filePath": "/oms/runtime/datamanager/imported/IMP_TRACK_NUM/<file_name>",
  "configId": "IMP_TRACK_NUM",
  "EVENT_MESSAGE": "Upload has been started successfully."
}
Parameter
Description

uploadFileContentId

The content ID of the uploadFile

filePath

The location of a file in a web site's folder structure

_EVENT_MESSAGE_

The communication message of the event

Fulfilled Order Items Feed

Explore the Fulfilled Order Items Feed, containing items fulfilled from a specific facility in HotWax Commerce

Introduction

The Fulfilled Order Items Feed is a JSON-formatted feed generated from HotWax Commerce OMS, organized by order. It includes order items that have been successfully fulfilled from a specific facility. This feed is crucial for updating inventory deltas to ensure accurate inventory levels in external systems like ERP. Notably, it only includes orders that have been fully fulfilled; orders with reserved items that have not yet shipped are excluded as they may still undergo rejection and re-brokering to another facility for fulfillment.

Use case

Synchronizing Inventory Changes with ERP Systems

The Fulfilled Order Items Feed helps retailers who use fulfill orders through external systems but require updates to inventory deltas for maintaining accurate inventory levels, particularly within their inventory management systems like ERPs. This feed provides essential raw data directly from OMS, enabling retailers to utilize it as is or after transformation for seamless integration into external systems via file-based methods. This ensures that inventory records remain precise and up-to-date across various platforms.

Customization

The Appeasements Financial Feeed Order Items feed has certain out-of-the-box customizations that allow users to generate the feed as per the requirements.

Parameter

Description

productStoreId

Allows you to set the product store IDs to generate brand-specific feed.

Sample Fulfilled Orders Items Feed
[ {
  "productStoreId" : "NN_STORE",
  "orderId" : "36421",
  "orderName" : "NNUS#10055",
  "orderDate" : "2022-06-17T07:24:32-04:00",
  "orderStatusId" : "ORDER_COMPLETED",
  "entryDate" : "2022-06-17T07:26:32-04:00",
  "currency" : "USD",
  "grandTotal" : 70,
  "orderItemSeqId" : null,
  "itemStatusId" : null,
  "itemQuantity" : null,
  "unitPrice" : null,
  "orderItemExternalId" : null,
  "shipGroupSeqId" : null,
  "slaShipmentMethodTypeId" : null,
  "postalContactMechId" : null,
  "telecomContactMechId" : null,
  "externalFulfillmentOrderItemId" : null,
  "fulfillmentStatus" : null,
  "customerFirstName" : "Ashish",
  "customerLastName" : "Sharma",
  "facilityId" : null,
  "facilityExternalId" : null,
  "facilityTypeId" : null,
  "parentFacilityTypeId" : null,
  "statusDatetime" : null,
  "productId" : null,
  "salesChannel" : "WEB_CHANNEL",
  "customerPartyId" : "36695",
  "shippedQuantity" : null,
  "shipmentId" : null,
  "shipmentItemSeqId" : null,
  "shippedProductId" : null,
  "statusId" : null,
  "destinationContactMechId" : null,
  "destinationTelecomNumberId" : null,
  "shipmentMethodTypeId" : null,
  "trackingIdNumber" : null,
  "carrierPartyId" : null,
  "orderIdentifications" : [ {
    "fromDate" : "2022-06-17T07:26:32-04:00",
    "orderId" : "36421",
    "lastUpdatedStamp" : "2022-06-17T07:26:32-04:00",
    "idValue" : "4449150697543",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_ID",
    "thruDate" : null
  }, {
    "idValue" : "NNUS#10055",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_NAME",
    "orderId" : "36421",
    "fromDate" : "2022-06-17T07:26:32-04:00",
    "lastUpdatedStamp" : "2022-06-17T07:26:32-04:00",
    "thruDate" : null
  }, {
    "orderIdentificationTypeId" : "SHOPIFY_ORD_NO",
    "idValue" : "9055",
    "orderId" : "36421",
    "fromDate" : "2022-06-17T07:26:32-04:00",
    "thruDate" : null,
    "lastUpdatedStamp" : "2022-06-17T07:26:32-04:00"
  } ],
  "customerPartyIdentifications" : [ {
    "lastUpdatedStamp" : "2021-12-28T06:09:33-05:00",
    "partyId" : "36695",
    "partyIdentificationTypeId" : "SHOPIFY_CUST_ID",
    "idValue" : "3304692285511"
  } ],
  "billTo" : null,
  "orderAdjustments" : [ {
    "customerReferenceId" : null,
    "correspondingProductId" : null,
    "orderItemSeqId" : "_NA_",
    "includeInShipping" : null,
    "description" : null,
    "exemptAmount" : null,
    "productPromoId" : null,
    "orderId" : "36421",
    "taxAuthPartyId" : null,
    "lastModifiedByUserLogin" : null,
    "oldPercentage" : null,
    "primaryGeoId" : null,
    "taxAuthGeoId" : null,
    "originalAdjustmentId" : null,
    "secondaryGeoId" : null,
    "createdByUserLogin" : null,
    "orderAdjustmentId" : null,
    "amountAlreadyIncluded" : null,
    "lastUpdatedStamp" : null,
    "amount" : 0,
    "comments" : null,
    "recurringAmount" : null,
    "lastModifiedDate" : null,
    "sourceReferenceId" : null,
    "productPromoRuleId" : null,
    "isManual" : null,
    "productFeatureId" : null,
    "taxAuthorityRateSeqId" : null,
    "overrideGlAccountId" : null,
    "oldAmountPerQuantity" : null,
    "shipGroupSeqId" : null,
    "includeInTax" : null,
    "createdDate" : null,
    "productPromoActionSeqId" : null,
    "sourcePercentage" : null,
    "orderAdjustmentTypeId" : "DONATION_ADJUSTMENT"
  } ],
  "shipments" : [ {
    "trackingNumber" : null,
    "carrierPartyId" : null,
    "shipmentMethodTypeId" : null,
    "shipTo" : null,
    "shipmentItems" : [ {
      "shipmentId" : null,
      "shipmentItemSeqId" : null,
      "orderId" : "36421",
      "orderItemSeqId" : "00101",
      "orderItemExternalId" : "11303349846087",
      "shipGroupSeqId" : "00001",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "STANDARD",
      "statusDatetime" : "2022-06-17T07:26:32-04:00",
      "productId" : "119214",
      "unitPrice" : 10,
      "facilityId" : "_NA_",
      "facilityExternalId" : "_NA_",
      "facilityTypeId" : "NA",
      "parentFacilityTypeId" : "VIRTUAL_FACILITY",
      "shippedQuantity" : null,
      "goodIdentifications" : [ {
        "lastUpdatedStamp" : "2022-06-17T01:40:13-04:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "gift1234567",
        "productId" : "119214",
        "fromDate" : "2022-06-17T01:40:13-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      } ]
    }, {
      "shipmentId" : null,
      "shipmentItemSeqId" : null,
      "orderId" : "36421",
      "orderItemSeqId" : "00102",
      "orderItemExternalId" : "11303349846087",
      "shipGroupSeqId" : "00001",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "STANDARD",
      "statusDatetime" : "2022-06-17T07:26:32-04:00",
      "productId" : "119214",
      "unitPrice" : 10,
      "facilityId" : "_NA_",
      "facilityExternalId" : "_NA_",
      "facilityTypeId" : "NA",
      "parentFacilityTypeId" : "VIRTUAL_FACILITY",
      "shippedQuantity" : null,
      "goodIdentifications" : [ {
        "lastUpdatedStamp" : "2022-06-17T01:40:13-04:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "gift1234567",
        "productId" : "119214",
        "fromDate" : "2022-06-17T01:40:13-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      } ]
    }, {
      "shipmentId" : null,
      "shipmentItemSeqId" : null,
      "orderId" : "36421",
      "orderItemSeqId" : "00103",
      "orderItemExternalId" : "11303349813319",
      "shipGroupSeqId" : "00001",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "STANDARD",
      "statusDatetime" : "2022-06-17T07:26:32-04:00",
      "productId" : "119216",
      "unitPrice" : 50,
      "facilityId" : "_NA_",
      "facilityExternalId" : "_NA_",
      "facilityTypeId" : "NA",
      "parentFacilityTypeId" : "VIRTUAL_FACILITY",
      "shippedQuantity" : null,
      "goodIdentifications" : [ ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      } ]
    } ]
  } ]
}, {
  "productStoreId" : "NN_STORE",
  "orderId" : "39670",
  "orderName" : "NNUS#11861",
  "orderDate" : "2023-01-30T03:40:49-05:00",
  "orderStatusId" : "ORDER_COMPLETED",
  "entryDate" : "2023-01-30T03:43:47-05:00",
  "currency" : "USD",
  "grandTotal" : 457.76,
  "orderItemSeqId" : null,
  "itemStatusId" : null,
  "itemQuantity" : null,
  "unitPrice" : null,
  "orderItemExternalId" : null,
  "shipGroupSeqId" : null,
  "slaShipmentMethodTypeId" : null,
  "postalContactMechId" : "148471",
  "telecomContactMechId" : null,
  "externalFulfillmentOrderItemId" : null,
  "fulfillmentStatus" : null,
  "customerFirstName" : "Tyrion",
  "customerLastName" : "Lannister",
  "facilityId" : null,
  "facilityExternalId" : null,
  "facilityTypeId" : null,
  "parentFacilityTypeId" : null,
  "statusDatetime" : null,
  "productId" : null,
  "salesChannel" : "WEB_CHANNEL",
  "customerPartyId" : "44390",
  "shippedQuantity" : null,
  "shipmentId" : null,
  "shipmentItemSeqId" : null,
  "shippedProductId" : null,
  "statusId" : null,
  "destinationContactMechId" : null,
  "destinationTelecomNumberId" : null,
  "shipmentMethodTypeId" : null,
  "trackingIdNumber" : null,
  "carrierPartyId" : null,
  "orderIdentifications" : [ {
    "lastUpdatedStamp" : "2023-01-30T03:43:48-05:00",
    "orderId" : "39670",
    "fromDate" : "2023-01-30T03:43:48-05:00",
    "idValue" : "4791361503303",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_ID",
    "thruDate" : null
  }, {
    "idValue" : "NNUS#11861",
    "orderId" : "39670",
    "lastUpdatedStamp" : "2023-01-30T03:43:48-05:00",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_NAME",
    "fromDate" : "2023-01-30T03:43:48-05:00",
    "thruDate" : null
  }, {
    "orderId" : "39670",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_NO",
    "lastUpdatedStamp" : "2023-01-30T03:43:48-05:00",
    "fromDate" : "2023-01-30T03:43:48-05:00",
    "idValue" : "10861",
    "thruDate" : null
  } ],
  "customerPartyIdentifications" : [ {
    "partyIdentificationTypeId" : "SHOPIFY_CUST_ID",
    "idValue" : "5736185397319",
    "lastUpdatedStamp" : "2022-07-20T02:30:00-04:00",
    "partyId" : "44390"
  } ],
  "billTo" : null,
  "orderAdjustments" : [ {
    "customerReferenceId" : null,
    "correspondingProductId" : null,
    "orderItemSeqId" : "_NA_",
    "orderId" : "39670",
    "includeInShipping" : null,
    "description" : null,
    "exemptAmount" : null,
    "productPromoId" : null,
    "taxAuthPartyId" : null,
    "lastModifiedByUserLogin" : null,
    "oldPercentage" : null,
    "primaryGeoId" : null,
    "taxAuthGeoId" : null,
    "originalAdjustmentId" : null,
    "secondaryGeoId" : null,
    "createdByUserLogin" : null,
    "orderAdjustmentId" : null,
    "amountAlreadyIncluded" : null,
    "lastUpdatedStamp" : null,
    "amount" : 0,
    "comments" : null,
    "recurringAmount" : null,
    "lastModifiedDate" : null,
    "sourceReferenceId" : null,
    "productPromoRuleId" : null,
    "isManual" : null,
    "productFeatureId" : null,
    "taxAuthorityRateSeqId" : null,
    "overrideGlAccountId" : null,
    "oldAmountPerQuantity" : null,
    "shipGroupSeqId" : null,
    "includeInTax" : null,
    "createdDate" : null,
    "productPromoActionSeqId" : null,
    "sourcePercentage" : null,
    "orderAdjustmentTypeId" : "DONATION_ADJUSTMENT"
  }, {
    "customerReferenceId" : null,
    "correspondingProductId" : null,
    "orderItemSeqId" : "_NA_",
    "orderId" : "39670",
    "includeInShipping" : null,
    "description" : null,
    "exemptAmount" : null,
    "productPromoId" : null,
    "taxAuthPartyId" : null,
    "lastModifiedByUserLogin" : null,
    "oldPercentage" : null,
    "orderAdjustmentTypeId" : "SHIPPING_SALES_TAX",
    "primaryGeoId" : null,
    "taxAuthGeoId" : null,
    "originalAdjustmentId" : null,
    "secondaryGeoId" : null,
    "createdByUserLogin" : null,
    "orderAdjustmentId" : null,
    "amountAlreadyIncluded" : null,
    "lastUpdatedStamp" : null,
    "amount" : 0,
    "comments" : null,
    "recurringAmount" : null,
    "lastModifiedDate" : null,
    "sourceReferenceId" : null,
    "productPromoRuleId" : null,
    "isManual" : null,
    "productFeatureId" : null,
    "taxAuthorityRateSeqId" : null,
    "overrideGlAccountId" : null,
    "oldAmountPerQuantity" : null,
    "shipGroupSeqId" : null,
    "includeInTax" : null,
    "createdDate" : null,
    "productPromoActionSeqId" : null,
    "sourcePercentage" : null
  }, {
    "customerReferenceId" : null,
    "correspondingProductId" : null,
    "orderItemSeqId" : "_NA_",
    "orderId" : "39670",
    "includeInShipping" : null,
    "description" : null,
    "exemptAmount" : null,
    "productPromoId" : null,
    "taxAuthPartyId" : null,
    "lastModifiedByUserLogin" : null,
    "oldPercentage" : null,
    "orderAdjustmentTypeId" : "SHIPPING_SALES_TAX",
    "primaryGeoId" : null,
    "taxAuthGeoId" : null,
    "originalAdjustmentId" : null,
    "secondaryGeoId" : null,
    "createdByUserLogin" : null,
    "orderAdjustmentId" : null,
    "amountAlreadyIncluded" : null,
    "lastUpdatedStamp" : null,
    "amount" : 0,
    "comments" : null,
    "recurringAmount" : null,
    "lastModifiedDate" : null,
    "sourceReferenceId" : null,
    "productPromoRuleId" : null,
    "isManual" : null,
    "productFeatureId" : null,
    "taxAuthorityRateSeqId" : null,
    "overrideGlAccountId" : null,
    "oldAmountPerQuantity" : null,
    "shipGroupSeqId" : null,
    "includeInTax" : null,
    "createdDate" : null,
    "productPromoActionSeqId" : null,
    "sourcePercentage" : null
  }, {
    "amount" : 30,
    "customerReferenceId" : null,
    "correspondingProductId" : null,
    "orderItemSeqId" : "_NA_",
    "orderId" : "39670",
    "includeInShipping" : null,
    "description" : null,
    "exemptAmount" : null,
    "productPromoId" : null,
    "taxAuthPartyId" : null,
    "lastModifiedByUserLogin" : null,
    "oldPercentage" : null,
    "primaryGeoId" : null,
    "taxAuthGeoId" : null,
    "originalAdjustmentId" : null,
    "secondaryGeoId" : null,
    "createdByUserLogin" : null,
    "orderAdjustmentId" : null,
    "amountAlreadyIncluded" : null,
    "lastUpdatedStamp" : null,
    "comments" : null,
    "recurringAmount" : null,
    "lastModifiedDate" : null,
    "sourceReferenceId" : null,
    "productPromoRuleId" : null,
    "isManual" : null,
    "productFeatureId" : null,
    "taxAuthorityRateSeqId" : null,
    "overrideGlAccountId" : null,
    "oldAmountPerQuantity" : null,
    "shipGroupSeqId" : null,
    "includeInTax" : null,
    "createdDate" : null,
    "productPromoActionSeqId" : null,
    "sourcePercentage" : null,
    "orderAdjustmentTypeId" : "SHIPPING_CHARGES"
  } ],
  "shipments" : [ {
    "trackingNumber" : "794609246622",
    "carrierPartyId" : "FEDEX",
    "shipmentMethodTypeId" : "GROUND",
    "shipTo" : {
      "houseNumberExt" : null,
      "stateProvinceGeoId" : "NV",
      "toName" : "Walter White",
      "address2" : null,
      "postalCodeGeoId" : null,
      "houseNumber" : null,
      "geoPointId" : "36560",
      "encodedAddressKey" : null,
      "postalCodeExt" : null,
      "countryGeoId" : "USA",
      "countryGeoCode" : "US",
      "stateProvinceGeoCode" : "NV",
      "attnName" : null,
      "address1" : "3799 S Las Vegas Blvd,  ",
      "directions" : null,
      "countyGeoId" : null,
      "cityGeoId" : null,
      "city" : "Las Vegas",
      "municipalityGeoId" : null,
      "contactMechId" : "148471",
      "postalCode" : "89109"
    },
    "shipmentItems" : [ {
      "shipmentId" : "27091",
      "shipmentItemSeqId" : "00001",
      "orderId" : "39670",
      "orderItemSeqId" : "00101",
      "orderItemExternalId" : "12073761243207",
      "shipGroupSeqId" : "00003",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:50:02-05:00",
      "productId" : "136845",
      "unitPrice" : 65.97,
      "facilityId" : "15",
      "facilityExternalId" : "15",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "productId" : "136845",
        "fromDate" : "2022-05-16T01:55:59-04:00",
        "idValue" : "ABSOLUTE",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "UPCA",
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "824095530224",
        "lastUpdatedStamp" : "2021-08-12T23:38:09-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      } ]
    }, {
      "shipmentId" : "27091",
      "shipmentItemSeqId" : "00002",
      "orderId" : "39670",
      "orderItemSeqId" : "00104",
      "orderItemExternalId" : "12073761243207",
      "shipGroupSeqId" : "00003",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:50:02-05:00",
      "productId" : "136845",
      "unitPrice" : 65.97,
      "facilityId" : "15",
      "facilityExternalId" : "15",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "productId" : "136845",
        "fromDate" : "2022-05-16T01:55:59-04:00",
        "idValue" : "ABSOLUTE",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "UPCA",
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "824095530224",
        "lastUpdatedStamp" : "2021-08-12T23:38:09-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00104"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00104"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00104"
      } ]
    } ]
  }, {
    "trackingNumber" : "794609246611",
    "carrierPartyId" : "FEDEX",
    "shipmentMethodTypeId" : "GROUND",
    "shipTo" : {
      "houseNumberExt" : null,
      "stateProvinceGeoId" : "NV",
      "toName" : "Walter White",
      "address2" : null,
      "postalCodeGeoId" : null,
      "houseNumber" : null,
      "geoPointId" : "36560",
      "encodedAddressKey" : null,
      "postalCodeExt" : null,
      "countryGeoId" : "USA",
      "countryGeoCode" : "US",
      "stateProvinceGeoCode" : "NV",
      "attnName" : null,
      "address1" : "3799 S Las Vegas Blvd,  ",
      "directions" : null,
      "countyGeoId" : null,
      "cityGeoId" : null,
      "city" : "Las Vegas",
      "municipalityGeoId" : null,
      "contactMechId" : "148471",
      "postalCode" : "89109"
    },
    "shipmentItems" : [ {
      "shipmentId" : "27090",
      "shipmentItemSeqId" : "00001",
      "orderId" : "39670",
      "orderItemSeqId" : "00102",
      "orderItemExternalId" : "12073761243207",
      "shipGroupSeqId" : "00002",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:48:45-05:00",
      "productId" : "136845",
      "unitPrice" : 65.97,
      "facilityId" : "1",
      "facilityExternalId" : "1",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "productId" : "136845",
        "fromDate" : "2022-05-16T01:55:59-04:00",
        "idValue" : "ABSOLUTE",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "UPCA",
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "824095530224",
        "lastUpdatedStamp" : "2021-08-12T23:38:09-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      } ]
    }, {
      "shipmentId" : "27090",
      "shipmentItemSeqId" : "00002",
      "orderId" : "39670",
      "orderItemSeqId" : "00103",
      "orderItemExternalId" : "12073761243207",
      "shipGroupSeqId" : "00002",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:48:45-05:00",
      "productId" : "136845",
      "unitPrice" : 65.97,
      "facilityId" : "1",
      "facilityExternalId" : "1",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "productId" : "136845",
        "fromDate" : "2022-05-16T01:55:59-04:00",
        "idValue" : "ABSOLUTE",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "UPCA",
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "824095530224",
        "lastUpdatedStamp" : "2021-08-12T23:38:09-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      } ]
    }, {
      "shipmentId" : "27090",
      "shipmentItemSeqId" : "00003",
      "orderId" : "39670",
      "orderItemSeqId" : "00107",
      "orderItemExternalId" : "12073761210439",
      "shipGroupSeqId" : "00002",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:48:45-05:00",
      "productId" : "136842",
      "unitPrice" : 65.97,
      "facilityId" : "1",
      "facilityExternalId" : "1",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2023-01-09T07:41:36-05:00",
        "goodIdentificationTypeId" : "ERP_ID",
        "lastUpdatedStamp" : "2023-01-09T07:42:11-05:00",
        "idValue" : "ABC8765",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_ID",
        "idValue" : "39445100363847",
        "fromDate" : "2022-10-21T07:31:32-04:00",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "fromDate" : "2022-04-27T15:00:11-04:00",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "idValue" : "ABSOLUTE",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-05T08:20:20-05:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "824095530101",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "orderItemSeqId" : "00107",
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "orderItemSeqId" : "00107",
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "orderItemSeqId" : "00107",
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      } ]
    }, {
      "shipmentId" : "27090",
      "shipmentItemSeqId" : "00004",
      "orderId" : "39670",
      "orderItemSeqId" : "00108",
      "orderItemExternalId" : "12073761210439",
      "shipGroupSeqId" : "00002",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:48:45-05:00",
      "productId" : "136842",
      "unitPrice" : 65.97,
      "facilityId" : "1",
      "facilityExternalId" : "1",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2023-01-09T07:41:36-05:00",
        "goodIdentificationTypeId" : "ERP_ID",
        "lastUpdatedStamp" : "2023-01-09T07:42:11-05:00",
        "idValue" : "ABC8765",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_ID",
        "idValue" : "39445100363847",
        "fromDate" : "2022-10-21T07:31:32-04:00",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "fromDate" : "2022-04-27T15:00:11-04:00",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "idValue" : "ABSOLUTE",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-05T08:20:20-05:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "824095530101",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "orderItemSeqId" : "00108",
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "orderItemSeqId" : "00108",
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "orderItemSeqId" : "00108",
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      } ]
    } ]
  }, {
    "trackingNumber" : "794609246600",
    "carrierPartyId" : "FEDEX",
    "shipmentMethodTypeId" : "GROUND",
    "shipTo" : {
      "houseNumberExt" : null,
      "stateProvinceGeoId" : "NV",
      "toName" : "Walter White",
      "address2" : null,
      "postalCodeGeoId" : null,
      "houseNumber" : null,
      "geoPointId" : "36560",
      "encodedAddressKey" : null,
      "postalCodeExt" : null,
      "countryGeoId" : "USA",
      "countryGeoCode" : "US",
      "stateProvinceGeoCode" : "NV",
      "attnName" : null,
      "address1" : "3799 S Las Vegas Blvd,  ",
      "directions" : null,
      "countyGeoId" : null,
      "cityGeoId" : null,
      "city" : "Las Vegas",
      "municipalityGeoId" : null,
      "contactMechId" : "148471",
      "postalCode" : "89109"
    },
    "shipmentItems" : [ {
      "shipmentId" : "27092",
      "shipmentItemSeqId" : "00002",
      "orderId" : "39670",
      "orderItemSeqId" : "00105",
      "orderItemExternalId" : "12073761210439",
      "shipGroupSeqId" : "00003",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:50:02-05:00",
      "productId" : "136842",
      "unitPrice" : 65.97,
      "facilityId" : "15",
      "facilityExternalId" : "15",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2023-01-09T07:41:36-05:00",
        "goodIdentificationTypeId" : "ERP_ID",
        "lastUpdatedStamp" : "2023-01-09T07:42:11-05:00",
        "idValue" : "ABC8765",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_ID",
        "idValue" : "39445100363847",
        "fromDate" : "2022-10-21T07:31:32-04:00",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "fromDate" : "2022-04-27T15:00:11-04:00",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "idValue" : "ABSOLUTE",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-05T08:20:20-05:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "824095530101",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00105"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00105"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00105"
      } ]
    }, {
      "shipmentId" : "27092",
      "shipmentItemSeqId" : "00001",
      "orderId" : "39670",
      "orderItemSeqId" : "00106",
      "orderItemExternalId" : "12073761210439",
      "shipGroupSeqId" : "00003",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:50:02-05:00",
      "productId" : "136842",
      "unitPrice" : 65.97,
      "facilityId" : "15",
      "facilityExternalId" : "15",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2023-01-09T07:41:36-05:00",
        "goodIdentificationTypeId" : "ERP_ID",
        "lastUpdatedStamp" : "2023-01-09T07:42:11-05:00",
        "idValue" : "ABC8765",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_ID",
        "idValue" : "39445100363847",
        "fromDate" : "2022-10-21T07:31:32-04:00",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "fromDate" : "2022-04-27T15:00:11-04:00",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "idValue" : "ABSOLUTE",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-05T08:20:20-05:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "824095530101",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "orderItemSeqId" : "00106",
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "orderItemSeqId" : "00106",
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "orderItemSeqId" : "00106",
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      } ]
    } ]
  } ]
} ]

Sample snippet from full JSON file to make inventory corrections:

"shipmentItems" : [ {
     "shipmentId" : "27091",
     "shipmentItemSeqId" : "00001",
     "orderId" : "39670",
     "orderItemSeqId" : "00101",
     "orderItemExternalId" : "12073761243207",
     "shipGroupSeqId" : "00003",
     "itemStatusId" : "ITEM_COMPLETED",
     "itemQuantity" : 1,
     "slaShipmentMethodTypeId" : "NEXT_DAY",
     "statusDatetime" : "2023-01-30T03:50:02-05:00",
     "productId" : "136845",
     "unitPrice" : 65.97,
     "facilityId" : "15",
     "facilityExternalId" : "15",
     "facilityTypeId" : "RETAIL_STORE",
     "parentFacilityTypeId" : "PHYSICAL_STORE",
     "shippedQuantity" : 1,
     "goodIdentifications" : [ {
       "fromDate" : "2021-08-12T23:38:08-04:00",
       "productId" : "136845",
       "IdValue" : "ABSOLUTE",
       "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
       "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
       "thruDate" : null
     }
Parameter
Description

itemQuantity

Ordered quantity

productId

The internal Id of the product in HotWax

facilityId

The internal Id of the facility in HotWax

facilityExternalId

The Id of the facility in the external systems

facilityTypeId

The type of the facility

ParentFacilityTypeId

The type of the parent facility, used to group various facility types.

shippedQuantity

The quantity of items shipped from the ordered quantity.

goodIdentifications

All identifications of the product in HotWax Commerce used to identify the product in external systems

goodIdentificationTypeId

The type of the unique product Identifier in the external systems (e.g. Shopify product SKU)

IdValue

The value of the GoodIdentificationTypeId

Shipping Label and Packing Slip

Explore API and data feeds within the 'Shipping Label and PackingSlip' documentation.

Downloads a shipping label in PDF format for the shipment. To download the shipping label PDF, you will need to call the /LabelAndPackingSlip.pdf endpoint with the POST method.

Request

Endpoint

https://<host>/api/LabelAndPackingSlip.pdf

Header

Params

 https://demo-oms.hotwax.io/api/LabelAndPackingSlip.pdf?shipmentIds=<>
Parameter
Description
Required (Y/N)

shipment ID

The ID of the shipment of groups

Yes

Response

Downloads a shipping label and packing slip in pdf format for the shipment.

Update Orders

Learn how to update orders in progress yet to be shipped with HotWax Commerce using the updateOrder endpoint and POST method.

Updates orders that are currently in progress and have not yet been shipped, to update the orders, you will need to call the updateOrder endpoint with the POST method. There are two main reasons for updating orders: changing the shipment box and rejecting specific order items.

Request

Endpoint

https://<host>/api/updateOrder

Example: https://demo-oms.hotwax.io/api/updateOrder

Header

For Order Item rejection:

Body

{
  "facilityId": "<facilityId>",
  "box_shipmentId_0": "item.shipmentId",
  "0_box_rowSubmit": "0",
  "box_shipmentBoxTypeId_0": "boxType",
  "rej_shipmentId_0": "item.shipmentId",
  "rej_shipmentItemSeqId_0": "item.shipmentItemSeqId",
  "0_rej_rowSubmit_": "0",
  "rej_rejectionReason_0": "item.rejectReason"
}

Note: Pass this information as a form data.

Parameter
Description
Required (Y/N)

facilityId

The ID of the facility.

Yes

box_shipmentId_0

The shipment ID of the item.

Yes

0_box_rowSubmit

The row in the order where the item belongs.

Yes

box_shipmentBoxTypeId_0

The box type of the shipment.

Yes

rej_shipmentId_0

The ID of the rejected shipment item.

Yes

rej_shipmentItemSeqId_0

The sequence ID of the rejected shipment ID.

No

0_rej_rowSubmit_

The row in the order where the rejected shipment item belongs.

No

rej_rejectionReason_0

The reason for rejecting the order item.

Yes

For Shipment Package Change:

Body

{
  "facilityId": "<facilityId>",
  "box_shipmentId_1": "item.shipmentId",
  "1_box_rowSubmit": "1",
  "box_shipmentBoxTypeId_1": "boxType",
  "rtp_shipmentId_1": "item.shipmentId",
  "rtp_shipmentItemSeqId_1": "item.shipmentItemSeqId",
  "1_rtp_rowSubmit": "1",
  "rtp_newShipmentId_1": "shipmentPackage.shipmentId"
}
Parameter
Description
Required (Y/N)

facilityId

The ID of the facility.

Yes

box_shipmentId_1

The shipment ID of the item.

Yes

1_box_rowSubmit

The row in the order where the item belongs.

Yes

box_shipmentBoxTypeId_1

The box type of the shipment.

Yes

rtp_shipmentId_0

The ID of the ready to pack shipment item.

Yes

rtp_shipmentItemSeqId_0

The sequence ID of the ready to pack shipment ID.

No

0_rtp_rowSubmit_

The row in the order where the ready to pack shipment item belongs.

No

rtp_rejectionReason_0

The reason for rejecting the ready to pack order item.

Yes

Response

Header

For Order Item rejection:

Body

{
  "facilityId": "<facilityId>",
  "box_shipmentId_0": "item.shipmentId",
  "0_box_rowSubmit": 0,
  "box_shipmentBoxTypeId_0": "boxType",
  "rej_shipmentId_0": "item.shipmentId",
  "rej_shipmentItemSeqId_0": "item.shipmentItemSeqId",
  "0_rej_rowSubmit_": 0,
  "rej_rejectionReason_0": "item.rejectReason",
  "_EVENT_MESSAGE_": "Order updated successfully"
}

For Shipment Package Change:

Body

{
    "box_shipmentBoxTypeId_1": "boxType",
    "1_box_rowSubmit": 1,
    "facilityId": "<facilityId>",
    "1_rtp_rowSubmit": 1,
    "rtp_shipmentId_1": "item.shipmentId",
    "rtp_shipmentItemSeqId_1": "item.shipmentItemSeqId",
    "rtp_newShipmentId_1": "shipmentPackage.shipmentId",
    "_EVENT_MESSAGE_": "Order updated successfully",
    "box_shipmentId_1": "item.shipmentId"
}

In Progress Orders

Discover how the 'In Progress Orders' API fetches a comprehensive list of orders currently in the process of pickup for fulfillment.

Fetches a comprehensive list of all orders which are in process of pickup for fulfillment. To get in progress orders, you will need to call the /solr-query endpoint with the POST method.

Request

Endpoint

https://<host>/api/solr-query

Example: https://demo-oms.hotwax.io/api/solr-query

Header

Body

{
  "json": {
    "params": {
      "rows": "10",
      "sort": "orderDate asc",
      "group": true,
      "group.field": "picklistBinId",
      "group.limit": 1000,
      "group.ngroups": true,
      "q.op": "AND",
      "start": 0
    },
    "query": "(*:*)",
    "filter": [
      "docType: OISGIR",
      "picklistItemStatusId: PICKITEM_PENDING",
      "-fulfillmentStatus: Rejected",
      "-shipmentMethodTypeId: STOREPICKUP",
      "facilityId: Store_1",
      "productStoreId: STORE"
    ],
  }
}

Query Parameters

Parameter
Description
Required (Y/N)

rows

The number of groups

No

sort

The order of search results

No

group

Filter to group orders

Yes

group.field

The field to be grouped

Yes

group.limit

The maximum number of items allowed in the group

Yes

group.ngroups

The number of groups that have matched the query in the results. The default value is false

No

defType

Selects the query parser to be used to process the query

No

q.op

Specifies the default operator for query expressions, overriding the default operator specified in the Schema. Possible values are "AND" or "OR"

No

qf

The query fields

No

docType

Reference index

No

start

Index page number

No

API Parameters

Parameter
Description
Required (Y/N)

orderTypeId

The ID of the order type in HotWax

Yes

picklistItemStatusID

The picking status of the order item

No

shipmentMethodTypeId

The ID of the shipment method type

No

fulfillmentStatus

The status of fulfillment which needs to be neglected

No

facilityId

The ID of the facility where fulfillment is taking place

No

Response

Header

Body

{
  "response": {
    "numFound": 2,
    "start": 0,
    "docs": [
      {
        "orderId": "NN11235",
        "orderItemSeqId": "00001",
        "shipGroupSeqId": "00001",
        "inventoryItemId": "10539",
        "reservedDatetime": "2020-07-28T10:06:15.497Z",
        "itemQuantity": 1.0,
        "quantityNotAvailable": 0.0,
        "productId": "10575",
        "keywordSearchText": [
          "10575",
          "Strike Endurance Tee-XL-Red"
        ],
        "productName": "Strike Endurance Tee-XL-Red",
        "spellchecker": "Strike Endurance Tee-XL-Red",
        "productSku": "MS08-XL-Red",
        "virtualProductName": "Strike Endurance Tee",
        "uniqueOrderItemsCount": 2.0,
        "isPicked": "Y",
        "picklistBinId": "11234",
        "picklistId": "11070",
        "picklistItemStatusId": "PICKITEM_PENDING",
        "picklistItemStatusDesc": "Pending",
        "fulfillmentStatus": "InProgress",
        "orderDate": "2020-07-28T10:06:11.087Z",
        "orderTypeId": "SALES_ORDER",
        "productStoreId": "NN_ECOM_STORE",
        "orderStatusId": "ORDER_APPROVED",
        "customerId": "10460",
        "customerName": "John Wick",
        "shipmentMethodTypeId": "SECOND_DAY",
        "shipmentMethodTypeDesc": "Second Day",
        "shipmentMethodTypeSeqNum": 7.0,
        "facilityId": "NN_WH",
        "facilityName": "California Warehouse",
        "facilityTypeId": "WAREHOUSE",
        "companyIds": [
          "NN_COMPANY"
        ],
        "orderIdentifications": [
          "DC_ORDER_ID/106238"
        ],
        "docType": "OISGIR",
        "identifier": "NN11235-00001-00001-10539",
        "docType-identifier": "OISGIR-NN11235-00001-00001-10539",
        "_version_": 1721740067563634688
      }
    ]
  }
}
Parameter
Description

orderId

The ID of the order.

orderItemSeqId

The ID of the order item sequence.

shipGroupSeqId

The ID of the ship group sequence.

inventoryItemId

The ID of the inventory item.

reservedDatetime

The time and date of reservation.

itemQuantity

The item quantity.

quantityNotAvailable

The item quantity not available at the location.

productId

The ID of the product in HotWax.

keywordSearchText

The keyword used for search.

productName

The name of the product.

spellchecker

The spellchecker.

productSku

The SKU ID of the product.

virtualProductName

The name of the parent product.

uniqueOrderItemsCount

The count of the unique order items.

picklistBinId

The ID of the picklist bin.

picklistId

The ID of the picklist.

picklistItemStatusId

The ID of the picklist item status.

picklistItemStatusDesc

The description of the picklist item status.

fulfillmentStatus

The current fulfillment status of the item.

orderDate

The date when the order was placed.

orderTypeId

The ID of the order type.

productStoreId

The ID of the product store.

orderStatusId

The ID of the order status.

customerId

The ID of the customer.

customerName

The name of the customer.

shipmentMethodTypeId

The ID of the shipment method type.

shipmentMethodTypeDesc

The description of the shipment method type.

shipmentMethodTypeSeqNum

The sequence number of the shipment method type.

facilityId

The ID of the facility.

facilityName

The name of the facility.

facilityTypeId

The ID of the facility type.

companyIds

The IDs of the companies associated with the order.

orderIdentifications

The secondary unique identifier of the order.

docType

The type of the document.

identifier

The identifier of the document.

docType-identifier

The type and identifier of the document.

Ready To Ship Items

Explore our 'Ready To Ship Items' page for a comprehensive list of orders picked, packed, and ready to delight your customers.

Fetches a comprehensive list of all orders items which are picked, packed and ready to ship to customers. To get ready to ship orders, you will need to call the /solr-query endpoint with the POST method.

Request

Endpoint

https://<host>/api/solr-query

Example: https://demo-oms.hotwax.io/api/solr-query

Headers

Body

{
  "json": {
    "params": {
      "rows": 1,
      "sort": "reservedDatetime desc",
      "group": true,
      "group.field": "orderId",
      "group.limit": 1000,
      "group.ngroups": true,
      "defType": "edismax",
      "q.op": "AND",
      "qf": "orderId"
    },
    "query": "(* *)",
    "filter": [
      "docType:OISGIR",
      "picklistItemStatusId: (PICKITEM_PICKED OR (PICKITEM_COMPLETED AND itemShippedDate: [NOW/DAY TO NOW/DAY+1DAY]))",
      "-shipmentMethodTypeId : STOREPICKUP",
      "facilityId: NN_WH"
    ],
    "facet": {
      "shipmentMethodTypeIdFacet": {
        "excludeTags": "shipmentMethodTypeIdFilter",
        "field": "shipmentMethodTypeId",
        "mincount": 1,
        "limit": -1,
        "sort": "index",
        "type": "terms",
        "facet": {
          "ordersCount": "unique(orderId)"
        }
      }
    }
  }
}
Parameter
Description
Required (Y/N)

rows

The number of groups.

No

sort

Sort data based on attributes.

No

group

Filter to group orders.

Yes

group.field

The field to be grouped.

Yes

group.limit

The maximum number of items allowed in the group.

Yes

group.ngroups

The number of groups that have matched the query in the results. The default value is false.

No

defType

Selects the query parser to be used to process the query.

No

q.op

Specifies the default operator for query expressions, overriding the default operator specified in the Schema. Possible values are "AND" or "OR".

No

qf

The query fields.

No

filter

Filters record based on parameters passed.

No

itemShippedDate

The filter to get orders based on their shipped date.

-

docType

Reference index.

No

start

Index page number.

No

orderTypeId

The ID of the order type in HotWax.

Yes

picklistItemStatusID

The status of the order if picked or not. Default value: N.

No

-shipmentMethodTypeId

The ID of the shipment method type which needs to be neglected.

No

shipmentMethodTypeIdFacet

The name of the facet.

No

excludeTags

Removes specific tags from facet counts.

No

mincount

Specifies the minimum counts required for a facet field to be included in the response.

No

limit

Controls how many constraints should be returned for each facet.

No

sort

Controls how faceted results are sorted.

No

type

-

No

facet

The arrangement of search results into categories based on indexed terms.

No

ordersCount

The count of orders.

No

-fulfillmentStatus

The status of fulfilment which needs to be neglected.

No

facilityId

The ID of the facility.

No

Response

Body

{
  "grouped": {
    "orderId": {
      "matches": 207,
      "ngroups": 143,
      "groups": [
        {
          "groupValue": "NN13172",
          "doclist": {
            "numFound": 2,
            "start": 0,
            "docs": [
              {
                "orderId": "NN13172",
                "orderItemSeqId": "00002",
                "shipGroupSeqId": "00001",
                "inventoryItemId": "10002",
                "reservedDatetime": "2021-12-29T11:49:12.582Z",
                "itemQuantity": 1.0,
                "quantityNotAvailable": 0.0,
                "productId": "10003",
                "keywordSearchText": [
                  "10003",
                  "Chaz Kangeroo Hoodie-XS-Orange"
                ],
                "productName": "Chaz Kangeroo Hoodie-XS-Orange",
                "spellchecker": "Chaz Kangeroo Hoodie-XS-Orange",
                "productSku": "MH01-XS-Orange",
                "virtualProductName": "Chaz Kangeroo Hoodie",
                "uniqueOrderItemsCount": 2.0,
                "isPicked": "Y",
                "picklistBinId": "11218",
                "picklistId": "11061",
                "picklistItemStatusId": "PICKITEM_PICKED",
                "picklistItemStatusDesc": "Picked",
                "fulfillmentStatus": "InProgress",
                "orderDate": "2021-12-29T11:48:56.395Z",
                "orderTypeId": "SALES_ORDER",
                "productStoreId": "NN_ECOM_STORE",
                "orderStatusId": "ORDER_APPROVED",
                "customerId": "11302",
                "customerName": "Aditya Patel",
                "maySplit": "N",
                "shipmentMethodTypeId": "PR_OVERNIGHT",
                "shipmentMethodTypeDesc": "Priority Overnight",
                "shipmentMethodTypeSeqNum": 13.0,
                "facilityId": "NN_WH",
                "facilityName": "California Warehouse",
                "facilityTypeId": "WAREHOUSE",
                "companyIds": [
                  "NN_COMPANY"
                ],
                "shipmentId": "11920",
                "shipmentStatusId": "SHIPMENT_APPROVED",
                "shipmentCarrierPartyId": "FEDEX",
                "shipmentShipMethodTypeId": "PR_OVERNIGHT",
                "isManifested": "N",
                "manifestContentId": "FEDEX/",
                "docType": "OISGIR",
                "identifier": "NN13172-00002-00001-10002",
                "docType-identifier": "OISGIR-NN13172-00002-00001-10002",
                "_version_": 1722910453124825091
              }
            ]
          }
        }
      ]
    }
  }
}
Parameter
Description

matches

The results matching the query.

ngroups

The number of unique groups in the result set.

groupValue

The value of the grouped field.

numFound

The total number of results found.

start

The offset of the first result in the result set.

orderId

The ID of the order.

orderItemSeqId

The ID of the order item sequence.

shipGroupSeqId

The ID of the ship group sequence.

inventoryItemId

The ID of the inventory item.

reservedDatetime

The date and time of reservation.

itemQuantity

The quantity of order items.

quantityNotAvailable

The quantity of items not available.

productId

The ID of the product.

keywordSearchText

The keyword used for search.

productName

The name of the product.

spellchecker

The spellchecker used.

productSku

The SKU (Stock Keeping Unit) of the product.

virtualProductName

The name of the virtual product.

uniqueOrderItemsCount

The count of unique order items.

isPicked

The status of picking.

picklistBinId

The ID of the picklist bin.

picklistId

The ID of the picklist.

picklistItemStatusId

The ID of the picklist item status.

picklistItemStatusDesc

The description of the picklist item status.

fulfillmentStatus

The status of fulfillment.

orderDate

The date when the order was placed.

orderTypeId

The ID of the order type.

productStoreId

The ID of the product store.

orderStatusId

The ID of the order status.

customerId

The ID of the customer.

customerName

The name of the customer.

maySplit

The filter for order splitting.

shipmentMethodTypeId

The ID of the shipment method type.

shipmentMethodTypeDesc

The description of the shipment method type.

shipmentMethodTypeSeqNum

The number of the shipment method type in the sequence.

facilityId

The ID of the facility.

facilityName

The name of the facility.

facilityTypeId

The ID of the facility type.

companyIds

The ID of the company.

shipmentId

The ID of the shipment.

shipmentStatusId

The ID of the shipment status.

shipmentCarrierPartyId

The ID of the shipment carrier party.

shipmentShipMethodTypeId

The ID of the shipment method type.

isManifested

The filter for document manifestation.

manifestContentId

The ID of the manifest content.

docType

The type of the document.

identifier

The identifier of the document.

docType-identifier

The type and identifier of the document separated by a hyphen.

The name of the primary facility group
https://demo-oms.hotwax.io/api/service/updateInventoryByIdentification
document

Brokering and Allocation

Explore APIs and data feeds facilitating order brokering and allocation for a seamless customer experience.

The APIs and data feeds that connect to deliver a specific order brokering and order allocation experience.

Pre-Orders

Explore how APIs and data feeds connect to deliver pre-order and backorder experiences seamlessly.

The APIs and data feeds that connect to deliver Pre-orders and Backorders experience.

BOPIS PDP Experience

Discover HotWax Commerce's BOPIS PDP experience enabling customers to browse all pickup store options for desired products on Shopify's PDP.

HotWax's BOPIS PDP experience allows customers to browse all available pickup stores (facilities) for their desired products on the Shopify product detail page (PDP)

To integrate this feature, follow these steps:

Step 1: Obtain the customer's latitude and longitude

To show available pickup facilities near the customer, the latitude and longitude coordinates of the customer are required. There are two ways to obtain these coordinates:

  1. If the customer inputs their postal code,

    • Use the postcodeLookup API to convert the postal code into latitude and longitude coordinates

  2. If the customer allows access to their system location,

    • Obtain the latitude and longitude coordinates directly from their device

Sample:

Method: POST

Request

Response

Step 2: Fetch all stores allowing BOPIS

Using the latitude and longitude coordinates, call the storeLookup API to fetch all the facilities within a given distance that allow BOPIS. Note: The distance parameter is configurable to narrow down the search results. You can allow customers to input their preferred distance or set a default value.

Sample:

Method: POST

Request

Response

Step 3: Check inventory at each store allowing BOPIS

For each store that allows BOPIS, use the checkBOPISInventory API to check the available to promise (ATP) inventory for the desired product. Display all the facilities with non-zero inventory numbers on the product detail page (PDP) for customers to select and place a BOPIS order.

Note: If a facility has 0 inventory for the product, you can still display it for the Ship-to-store PDP experience.

Sample:

Method: POST

Request

Response

Handle cases when customer location is not available:

In case the customer's location is not available, you can display all the available store pickup locations for the product using the storeLookup API and checkInventory API. Here's how to handle this scenario:

  • Step 1: Call the storeLookup API without passing latitude and longitude coordinates to retrieve all facilities allowing BOPIS

  • Step 2: Use the facility IDs returned in the response of the storeLookup API with the checkInventory API to get the facilities having inventory for the product

  • Step 3: Display all the locations with non-zero inventory on the PDP

Sample:

Request

Additioinal information

Identifying In-Store Pickup Orders:

When customers add qualifying items for in-store pickup, HotWax OMS will require the order to have the line item property _pickupstore prefilled with the pickup store location.

Note: The line item property can be added by the merchant development team.

Order Download Process:

BOPIS orders placed on Shopify are downloaded into HotWax Commerce alongside regular orders via the 'New Import' job. HotWax Commerce checks the line item property and sends the order to the customer's selected pickup location without brokering. Store associates access BOPIS orders through their BOPIS fulfillment app, preparing orders for customer pickup.

Promise Date Change Notification

Learn how to ensure accurate promise date change communication from OMS to Marketing Automation Platform.

Overview

This document outlines the steps to ensure accurate promise date change communication from the Order Management System (OMS) to the Marketing Automation Platform. This integration enhances the customer experience and reduces manual efforts.

Step 1: Identify Promise Date Changes

The bulkSendPromiseDateChange service in OMS identifies all the sales order items whose promise dates have changed throughout the day. The frequency of this service can be configured according to specific requirements, but it is recommended to set it to once a day.

Service Details:

Step 2: Prepare for Email Notification

The bulkSendPromiseDateChange service identifies all the updated sales order items whose promise dates have changed between the fromDate and toDate and gathers order context needed to hand off to the Marketing Automation Platform.

Step 3: Call sendDeliveryDateChangedNotification service

After bringing all the updated items in response, the bulkSendPromiseDateChange service calls the sendDeliveryDateChangedNotification service for each item.

Service Details:

Step 4: Customize Email Notification

The sendDeliveryDateChangedNotification service identifies the configured email integration platform and picks the appropriate API template. The service then uses the input parameters orderId and orderItemSequenceID to add all the sales order items with changed promise dates in the email template being pushed to the Marketing Automation Platform.

HotWax Commerce has ready integration with Klaviyo, a marketing automation platform. Here's a sample JSON file that is shared with Klaviyo's API for each order:

Step 5: Deliver Email Notification

The service calls the email platform's API and sends the details to the email integration platform which will then further deliver it to the customer.

By following these steps, you can ensure accurate promise date change communication from the OMS to marketing automation platform.

Perform Find

Fetches data from the Order Management System (OMS) entities. By making a GET request to this endpoint, you can retrieve the required data based on specific search criteria.

Request

Endpoint

https://<host>/api/performFind

Example: https://demo-oms.hotwax.io/api/performFind

Header

Content-Type: application/json

Example Parameters:

Parameters

The following parameters can be sent in the request:

Note: If noConditionFind is 'Y' then 'inputFields' parameter is optional.

Response

Status Code

HTTP/1.1 200 OK

Headers

Content-Type: application/json

Body

The response body will include the following data:

Example

Order Soft Allocation

Discover how HotWax Commerce's Soft Allocation feature conducts real-time eligibility checks for items in a customer's cart.

Hotwax Commerce's Soft Allocation feature performs real-time eligibility checks for the items in a customer's shopping cart. By evaluating the list of items in the cart along with the destination zip code, Soft Allocation ensures compliance with predefined criteria set by retailers such as checking if all items can be shipped from one location.

This process alse helps guarantee an efficient validation of shipping eligibility, aligning with the requirements of various specialty shipping carriers.

Internally, the Soft Allocation process adheres to a structured set of steps:

Step 1: Obtain the customer's latitude and longitude

To check eligible shipping facilities near the customer, the latitude and longitude coordinates of the customer are required. There are two ways to obtain these coordinates:

a. If the customer inputs their postal code:

b. If the customer allows access to their system location:

  • Obtain the latitude and longitude coordinates directly from their device.

Sample of postCodeLookup :

Method : /POST

Request

Response

Step 2: Verify inventory availability of cart items.

Utilize the checkCartInventory API to determine same-day delivery eligibility for cart items across facilities. This API evaluates eligibility based on key factors, including facility latitude and longitude and a predefined distance (typically within 50 miles for same-day delivery by carriers). The results indicate the closest facility eligible for fulfillment.

Sample of checkCartInventory:

Method : /POST

Request

Response

Step 3: Displaying Eligibility on the Cart Page

Upon receiving the response indicating facility's eligiblity for fulfillment, the application follows a systematic comparison process:

  1. Lead Time Comparison for Same Day Delivery: The client side in-browser script compares the order preparation lead time predefined within the app with the difference between the customer's current time and the facility's closing time.

  2. Eligibility Assessment: If the lead time is less than the time difference, the cart is deemed eligible for same-day delivery. Conversely, if the lead time exceeds the time difference, the order is marked as eligible for next-day delivery.

This structured approach ensures precise determination of delivery eligibility, providing customers with accurate information about their order's expected delivery date.

Additional Notes:

In addition to the eligibility assessment process:

a. Multiple Zip Code Exploration: The application enables customers to explore multiple zip codes directly on the product detail page and mini cart to check same-day delivery eligibility in various locations by submitting their cart against multiple times with different destination zip codes.

b. Real-time Status Updates: Customers can view the same-day delivery status not only on the product detail page but also in the cart details and the "mini cart" interface, ensuring consistent and real-time visibility of delivery options.

c. Mixed Cart Handling: If a customer's cart contains both Delivery and Buy Online, Pick Up In Store (BOPIS) items, it is suggested that the client side script submit all items for soft allocation irrespective of shipping method to provide a simple experience for the customer.

These additional features enhance the customer experience, providing flexibility and transparency in the delivery process.

Ready For Pickup Notification

Learn how to integrate Order Management System (OMS) with Marketing Automation Platforms for automated 'Ready to Pickup' email notifications.

Overview

These guidelines provide detailed steps for integrating the Order Management System (OMS) with Marketing Automation Platforms to enable the automated delivery of 'Ready to Pickup' email notifications to customers. These notifications are triggered when store staff packs the ordered items in a shipment and indicate their readiness for pickup using HotWax Commerce's BOPIS fulfillment app or Fulfillment APIs.

Step 1: Mark shipment-Ready for Pickup

When store staff pack the order items and indicate their readiness for pickup, the quickShipEntireShipGroup API creates a shipment from the selected shipgroup and moves it to the "Packed" status.

Sample API Request

Sample API Response

Step 2: Trigger sendReadyToPickupItemNotification chained event condition action (ECA) service

When the shipment status is packed, the sendReadyToPickupItemNotification chained ECA service is triggered to check the order type of the shipment and the configuration for sending ready-for-pickup emails.

The chained service works for both Store pickup and Ship to store shipments. Emails are triggered when Store pickup shipments are moved to packed status and Ship to store shipments are moved to "scheduled" status. The system responsible for sending the email and order details is configured in the following Product Store setting.

Note: Additionally, this ECA service also offers the option to manually trigger the "ready to pickup" email notification. When this ECA service is triggered, it internally initiates the email for shipment process. This feature allows users to manually initiate the sending of email notifications to inform recipients that their item is ready for pickup.

Configuration details:

The email transmission system is identified by the parameter systemMessageRemoteId, while the information to configure the email's content is specified by the templateContentId. This templateContentId enables the OMS (Order Management System) to locate and fetch the content required for composing the email.

ECA Details:

Step 3: Prepare content for email

When the marketing automation platform handles email transmission, the OMS shares the required information in JSON format, specified by the templateContentId, to the platform.

A list of fields which are available out of box in HotWax which can be shared with a marketing automation platform:

Note: If the OMS is responsible for sending the email, it incorporates the data into a preconfigured email template within its system.

Step 4: Deliver Email Notification

After recieving the required content, the marketing automation platform personalizes the customer's email using the provided details and delivers the email to the customer.

HotWax Commerce has ready integration with Listrak, a marketing automation platform. Added below is a JSON file sample

By following these steps, you can send Ready-For-Pickup email notifications from the OMS to the marketing automation platform.

Appeasements Feed

Learn about the Appeasements Financial Feed, a JSON-formatted refund-wise feed generated from HotWax Commerce OMS.

Introduction

The Appeasements Financial Feed is a refund-wise JSON-formatted feed generated from HotWax Commerce OMS. This feed contains details about appeasements provided against the orders. The feed can be used for financial reconciliation when third-party external systems such as ERP are involved.

Use case

Communication with the External Order fulfillment system

The Appeasements financial feed is useful for retailers who use ERP for their accounting purposes and requires financial reconciliation during specific cycles. This feed provides the out-of-the-box data available from OMS, and retailers can use it as is or after transformation to ingest into external systems through file-based integration.

Customization

The Appeasements Financial Feeed Order Items feed has certain out-of-the-box customizations that allow users to generate the feed as per the requirements.

Attributes

The following attributes have been prepared in the feed:

Return

billTo

shipTo

customerPartyIdentifications

payments

Reset Inventory

Parameter
Description
Required
Parameter
Description
Required

Parameter Name
Description
Required (Y/N)
Parameter Name
Description

To learn more about performFind API, watch this

Use the API to convert the postal code into latitude and longitude coordinates. Learn more about how to use the postCodeLookup API and convert postal codes into latitudes and longitudes.

Parameter
Description
Required
Parameter
Description
Parameter
Description
Parameter
Description
Required
Dynamic Variable
Description
Sample Appeasements feed
Field Name
Description
Value
Field Name
Description
Value
Field Name
Description
Value
Field Name
Description
Value
Field Name
Description
Value
{
  "json": {
    "query": "postcode: 10007"
  }
}
{
  "responseHeader": {
    "status": 0,
    "QTime": 2,
    "params": {
      "json": "{\"query\":\"postcode:10007\"}"
    }
  },
  "response": {
    "numFound": 1,
    "start": 0,
    "numFoundExact": true,
    "docs": [
      {
      "postcode": "10007",
      "latitude": "40.713858",
      "longitude": "-74.007777",
      "country": "USA",
      "country-code-id": "10007-USA",
      "location": "40.713858,-74.007777",
      "_version_": 1752733529047826432
      }
    ]
  }
}
{
  "viewSize": 40,
  "filters": ["storeType: RETAIL_STORE"],
  "point": "40.713858,-74.007777",
  "distance": 50
}
{
  "responseHeader": {
    "status": 0,
    "QTime": 5,
    "params": {
      "d": "50",
      "pt": "40.713858,-74.007777",
      "fl": "*,dist:geodist()",
      "start": "0",
      "json": "{\"filter\":[\"docType: STORE\",\"storeType: RETAIL_STORE\"],\"query\":\"*:*\",\"sort\":\"geodist() asc\"}",
      "q.op": "AND",
      "fq": "{!geofilt}",
      "rows": "40",
      "sfield": "latlon"
    }
  },
  "response": {
    "numFound": 3,
    "start": 0,
    "docs": [
      {
        "identifier": "STORE_15",
        "country": "United States",
        "docType": "STORE",
        "externalId": "DC_STORE_15",
        "storeName": "Facility",
        "countryCode": "USA",
        "city": "New York",
        "latlon": "40.72,-74",
        "postalCode": "10012",
        "storePhone": "",
        "storeCode": "STORE_15",
        "docType-identifier": "STORE-STORE_15",
        "stateCode": "NY",
        "state": "New York",
        "address1": "10 Times Square",
        "storeType": "RETAIL_STORE",
        "_version_": 1735068683092361221,
        "dist": 0.9465923971374126
      },
      {
        "identifier": "STORE_20",
        "country": "United States",
        "docType": "STORE",
        "externalId": "DC_STORE_20",
        "storeName": "New facility",
        "countryCode": "USA",
        "city": "New York",
        "latlon": "40.72,-74",
        "postalCode": "10012",
        "storePhone": "",
        "storeCode": "STORE_20",
        "docType-identifier": "STORE-STORE_20",
        "stateCode": "NY",
        "state": "New York",
        "address1": "4 Broadway",
        "storeType": "RETAIL_STORE",
        "_version_": 1735068683093409793,
        "dist": 0.9465923971374126
      },
      {
        "identifier": "STORE_9",
        "country": "United States",
        "docType": "STORE",
        "externalId": "DC_STORE_9",
        "storeName": "Broadway",
        "countryCode": "USA",
        "city": "New York",
        "latlon": "40.72,-74",
        "postalCode": "10012",
        "storePhone": "1212555-5555",
        "storeCode": "STORE_9",
        "docType-identifier": "STORE-STORE_9",
        "stateCode": "NY",
        "state": "New York",
        "address1": "540 Broadway",
        "storeType": "RETAIL_STORE",
        "_version_": 1735068683094458369,
        "dist": 0.9465923971374126
      }
    ]
  }
}
{
  "filters": {
    "sku": "MSH02-32-Black",
    "facilityId": "STORE_15, STORE_20, STORE_9 "
  }
}
{
"count": "1",
  "docs": [
    {
    "facilityId": "STORE_15",
    "atp": 3.000000
    },
    {
    "facilityId": "STORE_20",
    "atp": 8.000000
    },
    {
    "facilityId": "STORE_9",
    "atp": 14.000000
    },
  ]
}
{
  "viewSize": 40,
  "filters": ["storeType: RETAIL_STORE"]
}
<service name="bulkSendPromiseDateChangedNotification" engine="java"
             location="co.hotwax.customerservice.order.CsrOrderServices" invoke="bulkSendPromiseDateChangedNotification" auth="true" transaction-timeout="3600">
        <description>Bulk service to send promised date changed notification. Default send promised date changed on the last day.</description>
        <attribute name="fromDate" type="Timestamp" mode="IN" optional="true"/>
        <attribute name="toDate" type="Timestamp" mode="IN" optional="true"/>
</service>

fromDate

The starting date and time range to find order item changes

No

toDate

The ending date and time range to find order item changes

No

<service name="sendDeliveryDateChangedNotification" engine="java" require-new-transaction="true" max-retry="3"
             location="co.hotwax.warehouse.shipping.WarehouseServices" invoke="sendDeliveryDateChangedNotification">
        <description>Send an order item Delivery Date Changed notification</description>
        <implements service="orderNotificationInterface"/>
        <attribute name="orderId" type="String" mode="IN" optional="false"/>
        <attribute name="orderItemSeqId" type="String" mode="IN" optional="false"/>
</service>

orderId

The ID of the order in Shopify

Yes

orderItemSeqId

The numerical sequence ID of the item in the order

Yes

{
  "brandName": "",
  "DISCOUNT_CODE": "",
  "DISCOUNT_VALUE": "",
  "ORDERNO": "",
  "DISCOUNT_CODE": "",
  "FIRSTNAME": "",
  "ITEMLIST_XML": [
    {
      "itemId": "",
      "status": "",
      "description": "",
      "quantity": "",
      "color": "",
      "price": "",
      "itemImage": "",
      "itemUrl": "",
      "backOrder": "",
      "deliveryDate": "",
      "clearance": "",
      "itemName": "",
      "size": "",
      "itemUri": []
    }
  ]
}

inputFields

Specifies search conditions for retrieving data from the OMS entities

Yes

fieldList

Defines fields or attributes of the entities to include in the response

No

entityName

The specific entity type within the OMS from which you want to fetch data

Yes

noConditionFind

Fetches all data from the specified entity without any specific conditions applied

No

viewSize

Determines the number of records or data items to be included in a single page of the response

No

viewIndex

The index to be included in the response

No

distinct

Returns only distinct (different) values.

No

orderBy

Sorts the result-set in ascending or descending order

No

filterByDate

Filter records based on fromDate and thruDate

No

fromDateName

Filter by date field name if field name is different from default fromDate field

No

thruDateName

Filter by date field name if field name is different from default thruDate field

No

count

Results count

docs

The array of results found

{
  count: "1",
  docs: [
    {
      daysToCancelNonPay: 0,
      productStoreId: "STORE"
    }
  ]
}
{
  "json": {
    "params": {
      "q": "*:*",
      "fq": "{!geofilt sfield=location}",
      "pt": "18.180555,-66.749961",
      "d": "10"
    }
  }
}
{
  "responseHeader": {
    "status": 0,
    "QTime": 2,
    "params": { "json": "{\"query\":\"postcode:10007\"}"
  }
},
  "response": {
    "numFound": 1,
    "start": 0,
    "numFoundExact": true,
    "docs": [
  {
        "postcode": "10007",
        "latitude": "40.713858",
        "longitude": "-74.007777",
        "country": "USA",
        "country-code-id": "10007-USA",
        "location": "40.713858,-74.007777",
        "\_version\_": 1752733529047826432
      }
    ]
  }
}
{
  "point": "40.713858,-74.007777",
  "distance": 15,
  "shopifyShopId": "<shopifyshopID>",
  "items": [
    {
      "variantId": "123456",
      "quantity": 1
    },
    {
      "variantId": "234567",
      "quantity": 1
    }
  ],
  "filters": ["sameday_pref: true"]
}
{
  "facilityId": "868",
  "distance": 50,
  "cors.request.origin": "<url of the Shopify store>",
  "shopifyShopId": "23324533555",
  "filters": [
    "sameday_pref: true",
    "docType: STORE",
    "shopifyShop_id:23324533555"
  ],
  "point": "25.786909, -80.361253",
  "cors.request.type": "actual",
  "items": [
    {
      "variantId": "123456",
      "quantity": 1,
      "available_qty": 1,
      "status": "available"
    },
    {
      "variantId": "234567",
      "quantity": 1,
      "available_qty": 1,
      "status": "available"
    }
  ],
  "facility": {
    "docType": "STORE",
    "storeCode": "868",
    "identifier": "868",
    "storeType": "RETAIL_STORE",
    "storeName": "Silver Mall",
    "externalId": "868",
    "primaryFacilityGroupId": "10224533555",
    "primaryFacilityGroupName": "OP_Group",
    "primaryShopifyShopId": "10224533555",
    "10224533555_pref": "true",
    "fac_grp_pref": "true",
    "sameday_pref": "true",
    "address1": "11501 NW 10th Street",
    "city": "Miami",
    "postalCode": "10007",
    "country": "United States",
    "countryCode": "US",
    "state": "Florida",
    "stateCode": "FL",
    "latlon": "25.7875845,-80.3805674",
    "shopifyShop_id": ["10224533555"],
    "shopifyShops": [
      {
        "domain": "<domain-name>",
        "name": "shop-name",
        "myshopifyDomain": "<shopify-domain>",
        "shopifyShopId": "10224533555",
        "shopId": "SHOP"
      }
    ],
    "productStore_id": ["STORE"],
    "productStores": [
      {
        "storeName": "Not Naked",
        "productStoreId": "STORE"
      }
    ],
    "monday_open": "10:00:00",
    "monday_close": "21:00:00",
    "tuesday_open": "10:00:00",
    "tuesday_close": "21:00:00",
    "wednesday_open": "10:00:00",
    "wednesday_close": "21:00:00",
    "thursday_open": "10:00:00",
    "thursday_close": "21:00:00",
    "friday_open": "10:00:00",
    "friday_close": "21:00:00",
    "saturday_open": "10:00:00",
    "saturday_close": "21:00:00",
    "sunday_open": "11:00:00",
    "sunday_close": "20:00:00",
    "updatedDatetime": "2023-06-15T13:41:09.708Z",
    "docType-identifier": "STORE-868",
    "_version_": 1768776238064730000,
    "dist": 1.9352518
  }
}
{
  "orderId": "10037",
  "setPackedOnly": "Y",
  "dimensionUomId": "DM_cm",
  "shipmentBoxTypeId": "YOURPACKNG",
  "weight": "1",
  "weightUomId": "WT_kg",
  "shipGroupSeqId": "00001"
}

orderId

The unique identifier of the order.

Yes

setPackedOnly

A flag indicating if the shipment should only be packed. If the customer is going to pickup their order at the fulfillment location, then this should be enabled to prevent the order from being marked as shipped. Default value is 'Y' if not specified.

Yes

dimensionUomId

The unit of measurement for dimensions (e.g., inches, centimeters).

Yes

shipmentBoxTypeId

The Id of the shipment box type.

Yes

weight

The weight of the package.

Yes

weightUomId

The unit of measurement for weight (e.g., pounds, kilograms).

Yes

shipGroupSeqId

The Id of the ship group sequence.

Yes

{
  "orderId": "10037",
  "setPackedOnly": "Y",
  "weight": "1",
  "shipmentBoxTypeId": "YOURPACKNG",
  "shipGroupSeqId": "00001",
  "shipmentId": "10140",
  "dimensionUomId": "WT_kg",
  "weightUomId": "WT_kg",
  "_EVENT_MESSAGE_": "Congratulations! Shipment #10140 is ready for pickup"
}

shipmentId

The Id of the shipment made.

_EVENT_MESSAGE_

The message for the event performed.

<ProductStoreEmailSetting 
  emailType="PRDS_READY_TO_PICKUP"
  productStoreId="STORE" 
  subject="Ready For Pickup" 
  templateContentId="READY_FOR_PICKUP", 
  systemMessageRemoteId= NN_LISTRAK_CONFIG>

ProductStoreEmailSetting

The email settings in the Order Management System (OMS) for the product store identifier.

emailType

The type of email to be sent.

productStoreId

The Id of the product store.

subject

The subject of the email.

templateContentId

The Id of the template content.

systemMessageRemoteId

The Id of the system responsible for sending the email.

<service name="sendReadyToPickupItemNotification" engine="java" require-new-transaction="true" max-retry="3"
         location="co.hotwax.customerservice.shipment.ShipmentServices" export="true" invoke="sendReadyToPickupItemNotification" auth="true">
    <description>Send a ready to pick up item notification</description>
    <attribute name="shipmentId" type="String" mode="IN"/>
    <attribute name="emailType" type="String" mode="IN" optional="true" default-value="PRDS_READY_TO_PICKUP"/>
</service>

shipmentId

The Id of the shipment.

Yes

emailType

The type of the email.

Yes

First Name

The first name of the recipient.

Last Name

The last name of the recipient.

To Facility Name

The name of the facility for pickup.

Address 1

The first line of the pickup location's address.

Address 2

The second line of the pickup location's address (if applicable).

City

The city where the pickup facility is located.

State Name

The name of the state or region where the pickup facility is located.

Country Name

The name of the country where the pickup facility is located.

Order Name

The name or reference number of the pickup order.

Product Name

The name of the product being picked up.

Quantity

The quantity of the product being picked up.

Price

The price of the product.

Image

An image or visual representation of the product.

Subtotal

The subtotal amount for the pickup order.

GrandTotal

The grand total amount for the pickup order.

const data = {
  "emailAddress": "john.doe@example.co",
  "segmentationFieldValues": [
    {
      "segmentationFieldId": 2378294,
      "value": "${originFacility.facilityName!}"
    },
    {
      "segmentationFieldId": 2378297,
      "value": "https://localhost:8443/"
    },
    {
      "segmentationFieldId": 2378298,
      "value": "${originFacility.facilityName!}"
    },
    {
      "segmentationFieldId": 2378299,
      "value": "${postalAddress.address1!}"
    },
    {
      "segmentationFieldId": 2378300,
      "value": "${postalAddress.address2!}"
    },
    {
      "segmentationFieldId": 2378301,
      "value": "${postalAddress.city!}"
    },
    {
      "segmentationFieldId": 2378302,
      "value": "${postalAddress.stateProvinceGeoId!}"
    },
    {
      "segmentationFieldId": 2378303,
      "value": "${postalAddress.postalCode!}"
    },
    {
      "segmentationFieldId": 2378304,
      "value": "${productUrl!}"
    },
    {
      "segmentationFieldId": 2378305,
      "value": "${orderItem.itemDescription!}"
    },
    {
      "segmentationFieldId": 2378306,
      "value": "${product.productName!}"
    },
    {
      "segmentationFieldId": 2378384,
      "value": "${shipmentItem.quantity!}"
    },
    {
      "segmentationFieldId": 2378402,
      "value": "${orderName!orderId}"
    },
    {
      "segmentationFieldId": 2378403,
      "value": "${partyName!}"
    }
  ]
};

Parameter

Description

productStoreId

Allows you to set the product store IDs to generate brand-specific feed.

[ {
  "returnId" : "11724",
  "entryDate" : "2021-11-17T04:51:54-05:00",
  "returnDate" : null,
  "customerPartyId" : "36143",
  "originContactMechId" : null,
  "comments" : "Appeasement Shipping refund",
  "amount" : 30,
  "returnAdjustmentTypeId" : "APPEASEMENT",
  "orderName" : "SMUS#8113",
  "orderId" : "27923",
  "orderTypeId" : "SALES_ORDER",
  "productStoreExternalId" : "1",
  "billTo" : {
    "countryGeoCode" : "US",
    "stateProvinceGeoCode" : "NY",
    "contactMechId" : "101540",
    "toName" : "Petter William",
    "attnName" : null,
    "address1" : "588 Abia Martin Drive",
    "address2" : null,
    "houseNumber" : null,
    "houseNumberExt" : null,
    "directions" : null,
    "city" : "New York",
    "cityGeoId" : null,
    "postalCode" : "10005",
    "postalCodeExt" : null,
    "countryGeoId" : "USA",
    "stateProvinceGeoId" : "NY",
    "countyGeoId" : null,
    "municipalityGeoId" : null,
    "postalCodeGeoId" : null,
    "geoPointId" : "25097",
    "encodedAddressKey" : null
  },
    "shipTo" : {
    "countryGeoCode" : "US",
    "stateProvinceGeoCode" : "CA",
    "contactMechId" : "150857",
    "toName" : "cat lin",
    "attnName" : null,
    "address1" : "830 Bay Blvd",
    "address2" : null,
    "houseNumber" : null,
    "houseNumberExt" : null,
    "directions" : null,
    "city" : "Chula Vista",
    "cityGeoId" : null,
    "postalCode" : "91911",
    "postalCodeExt" : null,
    "countryGeoId" : "USA",
    "stateProvinceGeoId" : "CA",
    "countyGeoId" : null,
    "municipalityGeoId" : null,
    "postalCodeGeoId" : null,
    "geoPointId" : "37116",
    "encodedAddressKey" : null
  },
  "totalAmount" : 32.66,
    "customerPartyIdentifications": [
      {
        "idValue": "6460087566485",
        "lastUpdatedStamp": "2022-09-19T09:29:15-04:00",
        "partyId": "36143",
        "partyIdentificationTypeId": "SHOPIFY_CUST_ID"
      }
    ],
    "payments" : [ {
      "paymentMethodCode" : "VISA",
      "createdDate" : "2022-09-20T01:51:46-07:00",
      "paymentMethodTypeId" : "EXT_SHOP_VISA",
      "paymentMethodDescription" : "Ext VISA",
      "statusId" : "PAYMENT_REFUNDED",
      "orderId" : "27923",
      "amount" : 18.03
    }]
}, {
  "returnId" : "11724",
  "entryDate" : "2021-11-17T04:51:54-05:00",
  "returnDate" : null,
  "customerPartyId" : "36143",
  "originContactMechId" : null,
  "comments" : "Appeasement Tax Refund",
  "amount" : 2.66,
  "returnAdjustmentTypeId" : "APPEASEMENT",
  "orderName" : "SMUS#8113",
  "orderId" : "27923",
  "orderTypeId" : "SALES_ORDER",
  "productStoreExternalId" : "1",
  "billTo" : {
    "countryGeoCode" : "US",
    "stateProvinceGeoCode" : "NY",
    "contactMechId" : "101540",
    "toName" : "Petter William",
    "attnName" : null,
    "address1" : "588 Abia Martin Drive",
    "address2" : null,
    "houseNumber" : null,
    "houseNumberExt" : null,
    "directions" : null,
    "city" : "New York",
    "cityGeoId" : null,
    "postalCode" : "10005",
    "postalCodeExt" : null,
    "countryGeoId" : "USA",
    "stateProvinceGeoId" : "NY",
    "countyGeoId" : null,
    "municipalityGeoId" : null,
    "postalCodeGeoId" : null,
    "geoPointId" : "25097",
    "encodedAddressKey" : null
  },
    "shipTo" : {
    "countryGeoCode" : "US",
    "stateProvinceGeoCode" : "CA",
    "contactMechId" : "150857",
    "toName" : "cat lin",
    "attnName" : null,
    "address1" : "830 Bay Blvd",
    "address2" : null,
    "houseNumber" : null,
    "houseNumberExt" : null,
    "directions" : null,
    "city" : "Chula Vista",
    "cityGeoId" : null,
    "postalCode" : "91911",
    "postalCodeExt" : null,
    "countryGeoId" : "USA",
    "stateProvinceGeoId" : "CA",
    "countyGeoId" : null,
    "municipalityGeoId" : null,
    "postalCodeGeoId" : null,
    "geoPointId" : "37116",
    "encodedAddressKey" : null
  },
  "totalAmount" : 32.66,
    "customerPartyIdentifications": [
      {
        "idValue": "6460087566485",
        "lastUpdatedStamp": "2022-09-19T09:29:15-04:00",
        "partyId": "36143",
        "partyIdentificationTypeId": "SHOPIFY_CUST_ID"
      }
    ],
    "payments" : [ {
      "paymentMethodCode" : "VISA",
      "createdDate" : "2022-09-20T01:51:46-07:00",
      "paymentMethodTypeId" : "EXT_SHOP_VISA",
      "paymentMethodDescription" : "Ext VISA",
      "statusId" : "PAYMENT_REFUNDED",
      "orderId" : "27923",
      "amount" : 18.03
    }]
} ]

returnId

HotWax Commerce Return's identification

11724

entryDate

The entry date of return in HotWax Commerce

2021-11-17T04:51:54-05:00

returnDate

The return date

null

customerPartyId

HotWax Commerce customer identification

36143

originContactMechId

The origin contact mechanism ID

null

comments

Comments regarding the return

Appeasement Shipping refund

amount

The total return amount

30

returnAdjustmentTypeId

The return adjustment type against the order

APPEASEMENT

orderName

The Shopify order identification

SMUS#8113

orderId

The HotWax Commerce Order Identification

27923

orderTypeId

The order type ID

SALES_ORDER

productStoreExternalId

The external ID of the product store

1

billTo

The order billing address

See below

shipTo

The order shipping address

See below

totalAmount

The sum total amount of all items

32.66

customerPartyIdentifications

HotWax Commerce Customer identifications

See below

payments

The payments related to order

See below

countryGeoCode

The country geo code

US

stateProvinceGeoCode

The state/province geo code

NY

contactMechId

The contact mechanism ID

101540

toName

The recipient's name

Petter William

attnName

The attention name

null

address1

The first line of the address

588 Abia Martin Drive

address2

The second line of the address

null

houseNumber

The house number

null

houseNumberExt

The house number extension

null

directions

Directions

null

city

The city

New York

cityGeoId

The city geo ID

null

postalCode

The postal code

10005

postalCodeExt

The postal code extension

null

countryGeoId

The country geo ID

USA

stateProvinceGeoId

The state/province geo ID

NY

countyGeoId

The county geo ID

null

municipalityGeoId

The municipality geo ID

null

postalCodeGeoId

The postal code geo ID

null

geoPointId

The geo point ID

25097

encodedAddressKey

The encoded address key

null

countryGeoCode

The country geo code

US

stateProvinceGeoCode

The state/province geo code

CA

contactMechId

The contact mechanism ID

150857

toName

The recipient's name

cat lin

attnName

The attention name

null

address1

The first line of the address

830 Bay Blvd

address2

The second line of the address

null

houseNumber

The house number

null

houseNumberExt

The house number extension

null

directions

Directions

null

city

The city

Chula Vista

cityGeoId

The city geo ID

null

postalCode

The postal code

91911

postalCodeExt

The postal code extension

null

countryGeoId

The country geo ID

USA

stateProvinceGeoId

The state/province geo ID

CA

countyGeoId

The county geo ID

null

municipalityGeoId

The municipality geo ID

null

postalCodeGeoId

The postal code geo ID

null

geoPointId

The geo point ID

37116

encodedAddressKey

The encoded address key

null

idValue

The value of identification

6460087566485

lastUpdatedStamp

The date and time of the last update

2022-09-19T09:29:15-04:00

partyId

HotWax Commerce's party identification

36143

partyIdentificationTypeId

The party identification type ID

SHOPIFY_CUST_ID

paymentMethodCode

The payment method code

VISA

createdDate

The date and time of creation

2022-09-20T01:51:46-07:00

paymentMethodTypeId

The payment method type ID

EXT_SHOP_VISA

paymentMethodDescription

The payment method description

Ext VISA

statusId

The status ID

PAYMENT_REFUNDED

orderId

The order ID

27923

amount

The payment amount

18.03

FacilityId,IdType,IdValue,AvailableQty,LocationSeqId
DEMO_HC_STORE_1,Shopify Product Id,SKU12345,20,TLTLTLLL01

Return

[
    {
      "returnId": "13031",
      "returnItemSeqId": null,
      "entryDate": null,
      "returnDate": "2022-02-03T10:41:39-05:00",
      "orderSalesChannelEnumId": "POS_SALES_CHANNEL",
      "orderSalesChannel": "POS Channel",
      "returnChannelEnumId" : "ECOM_RTN_CHANNEL",
      "orderId": "29211",
      "orderItemSeqId": null,
      "returnItemAmountTotal": null,
      "statusId": null,
      "completedDatetime": "2022-02-01T10:41:39-05:00",
      "productStoreId": "WSC_STORE",
      "orderName": "WSC#8586",
      "productStoreExternalId": "1",
      "customerPartyId": "37301",
      "billTo": {
        "houseNumberExt": null,
        "address2": null,
        "postalCode": "10005",
        "city": "New York",
        "stateProvinceGeoId": "NY",
        "postalCodeGeoId": null,
        "houseNumber": null,
        "encodedAddressKey": null,
        "contactMechId": "108812",
        "address1": "588 Abia Martin Drive",
        "geoPointId": "26753",
        "postalCodeExt": null,
        "countryGeoId": "USA",
        "countryGeoCode": "US",
        "attnName": null,
        "directions": null,
        "countyGeoId": null,
        "cityGeoId": null,
        "toName": "Petter William",
        "municipalityGeoId": null,
        "stateProvinceGeoCode": "NY"
      },
      "isShippingChargesSent": "N",
      "returnAdjustments": [
        {
          "customerReferenceId": null,
          "correspondingProductId": null,
          "amount": 16.95,
          "includeInShipping": null,
          "returnTypeId": null,
          "exemptAmount": null,
          "productPromoId": null,
          "taxAuthPartyId": null,
          "lastModifiedByUserLogin": null,
          "primaryGeoId": null,
          "lastUpdatedStamp": "2022-03-18T14:18:19-04:00",
          "taxAuthGeoId": null,
          "secondaryGeoId": null,
          "createdByUserLogin": null,
          "orderAdjustmentId": null,
          "description": "restock",
          "returnAdjustmentId": "11735",
          "returnId": "13031",
          "lastModifiedDate": null,
          "sourceReferenceId": null,
          "productPromoRuleId": null,
          "productFeatureId": null,
          "taxAuthorityRateSeqId": null,
          "overrideGlAccountId": null,
          "returnAdjustmentTypeId": "RET_SHIPPING_ADJ",
          "shipGroupSeqId": null,
          "includeInTax": null,
          "createdDate": null,
          "comments": "restock",
          "productPromoActionSeqId": null,
          "orderId": "30129",
          "sourcePercentage": null,
          "returnItemSeqId": "_NA_"
        },
        {
          "customerReferenceId": null,
          "correspondingProductId": null,
          "amount": 26.95,
          "includeInShipping": null,
          "returnTypeId": null,
          "exemptAmount": null,
          "productPromoId": null,
          "taxAuthPartyId": null,
          "lastModifiedByUserLogin": null,
          "primaryGeoId": null,
          "lastUpdatedStamp": "2022-03-18T14:18:19-04:00",
          "taxAuthGeoId": null,
          "secondaryGeoId": null,
          "createdByUserLogin": null,
          "orderAdjustmentId": null,
          "description": "restock",
          "returnAdjustmentId": "11735",
          "returnId": "13031",
          "lastModifiedDate": null,
          "sourceReferenceId": null,
          "productPromoRuleId": null,
          "productFeatureId": null,
          "taxAuthorityRateSeqId": null,
          "overrideGlAccountId": null,
          "returnAdjustmentTypeId": "RET_SALES_TAX_ADJ",
          "shipGroupSeqId": null,
          "includeInTax": null,
          "createdDate": null,
          "comments": "restock",
          "productPromoActionSeqId": null,
          "orderId": "30129",
          "sourcePercentage": null,
          "returnItemSeqId": "_NA_"
        }
      ],
      "customerPartyIdentifications": [
        {
          "partyId": "37301",
          "idValue": "3327480496199",
          "partyIdentificationTypeId": "SHOPIFY_CUST_ID",
          "lastUpdatedStamp": "2022-01-28T02:36:41-05:00"
        }
      ],
      "tenderAmount": 131.68,
      "payments": [
        {
          "paymentMethodTypeId": "EXT_SHOP_VISA",
          "paymentMethodDescription": "Ext VISA",
          "statusId": "PAYMENT_REFUNDED",
          "paymentMethodCode": "VISA",
          "returnId": "13031",
          "amount": 131.68,
          "orderId": "29211",
          "createdDate": "2022-05-31T03:48:18-04:00"
        }
      ],
      "returnItems": [
        {
          "returnId": "13031",
          "returnItemSeqId": "00001",
          "orderId": "29211",
          "orderItemSeqId": "00001",
          "returnItemPrice": 120.95,
          "returnQuantity": 1,
          "returnReasonId": "RTN_NOT_WANT",
          "returnReasonNote": "",
          "orderItemRequestedShipMethTypeId": "STANDARD",
          "productId": "20965",
          "orderName": "WSC#8586",
          "facilityExternalId": "1",
          "facilityId": "1",
          "productStoreExternalId": "1",
          "currencyUom": "USD",
          "customerPartyId": "37301",
          "shipToContactMechId": null,
          "shipTo": {
            "houseNumberExt": null,
            "contactMechId": "67597",
            "postalCode": "91911",
            "address2": null,
            "postalCodeGeoId": null,
            "houseNumber": null,
            "encodedAddressKey": null,
            "address1": "830 Bay Boulevard",
            "postalCodeExt": null,
            "countryGeoId": "USA",
            "countryGeoCode": "US",
            "stateProvinceGeoCode": "CA",
            "geoPointId": "17142",
            "attnName": null,
            "directions": null,
            "city": "Chula Vista",
            "countyGeoId": null,
            "cityGeoId": null,
            "municipalityGeoId": null,
            "stateProvinceGeoId": "CA",
            "toName": "cata lion"
          },
          "productIdentifications": [
            {
              "productId": "20965",
              "goodIdentificationTypeId": "SHOPIFY_PROD_ID",
              "lastUpdatedStamp": "2023-03-14T13:13:32-04:00",
              "idValue": "13778606719047",
              "fromDate": "2023-02-22T07:04:36-05:00",
              "thruDate": null
            },
            {
              "productId": "20965",
              "lastUpdatedStamp": "2023-03-14T13:13:32-04:00",
              "idValue": "AGENT",
              "fromDate": "2020-06-11T13:13:16-04:00",
              "goodIdentificationTypeId": "SHOPIFY_PROD_SKU",
              "thruDate": null
            },
            {
              "productId": "20965",
              "lastUpdatedStamp": "2023-03-14T13:13:32-04:00",
              "fromDate": "2022-04-25T09:00:18-04:00",
              "goodIdentificationTypeId": "SKU",
              "idValue": "AGENT",
              "thruDate": null
            },
            {
              "productId": "20965",
              "idValue": "824386706307",
              "lastUpdatedStamp": "2022-03-16T03:00:32-04:00",
              "goodIdentificationTypeId": "UPCA",
              "fromDate": "2020-06-11T13:13:16-04:00",
              "thruDate": null
            }
          ],
          "returnItemAdjustments": [
            {
              "customerReferenceId": null,
              "correspondingProductId": null,
              "orderId": null,
              "includeInShipping": null,
              "comments": "Return Sales Tax",
              "exemptAmount": null,
              "productPromoId": null,
              "taxAuthPartyId": null,
              "lastModifiedByUserLogin": null,
              "lastUpdatedStamp": "2022-02-01T10:41:39-05:00",
              "returnAdjustmentTypeId": "RET_SALES_TAX_ADJ",
              "description": "Return Sales Tax",
              "returnAdjustmentId": "11580",
              "primaryGeoId": null,
              "taxAuthGeoId": null,
              "secondaryGeoId": null,
              "createdByUserLogin": null,
              "orderAdjustmentId": null,
              "returnItemSeqId": "00001",
              "lastModifiedDate": null,
              "sourceReferenceId": null,
              "productPromoRuleId": null,
              "productFeatureId": null,
              "taxAuthorityRateSeqId": null,
              "returnId": "13031",
              "overrideGlAccountId": null,
              "shipGroupSeqId": null,
              "includeInTax": null,
              "amount": 10.73,
              "createdDate": null,
              "productPromoActionSeqId": null,
              "sourcePercentage": null,
              "returnTypeId": "RTN_REFUND"
            }
          ]
        },
        {
          "returnId": "13031",
          "returnItemSeqId": "00002",
          "orderId": "29211",
          "orderItemSeqId": "00002",
          "returnItemPrice": 120.95,
          "returnQuantity": 1,
          "returnReasonId": "OTHER",
          "returnReasonNote": "Did not meet my requirements",
          "orderItemRequestedShipMethTypeId": "STANDARD",
          "productId": "20965",
          "orderName": "WSC#8586",
          "facilityExternalId": "1",
          "facilityId": "1",
          "productStoreExternalId": "1",
          "currencyUom": "USD",
          "customerPartyId": "37301",
          "shipToContactMechId": null,
          "shipTo": {
            "houseNumberExt": null,
            "contactMechId": "67597",
            "postalCode": "91911",
            "address2": null,
            "postalCodeGeoId": null,
            "houseNumber": null,
            "encodedAddressKey": null,
            "address1": "830 Bay Boulevard",
            "postalCodeExt": null,
            "countryGeoId": "USA",
            "countryGeoCode": "US",
            "stateProvinceGeoCode": "CA",
            "geoPointId": "17142",
            "attnName": null,
            "directions": null,
            "city": "Chula Vista",
            "countyGeoId": null,
            "cityGeoId": null,
            "municipalityGeoId": null,
            "stateProvinceGeoId": "CA",
            "toName": "cata lion"
          },
          "productIdentifications": [
            {
              "productId": "20965",
              "goodIdentificationTypeId": "SHOPIFY_PROD_ID",
              "lastUpdatedStamp": "2023-03-14T13:13:32-04:00",
              "idValue": "13778606719047",
              "fromDate": "2023-02-22T07:04:36-05:00",
              "thruDate": null
            },
            {
              "productId": "20965",
              "lastUpdatedStamp": "2023-03-14T13:13:32-04:00",
              "idValue": "AGENT",
              "fromDate": "2020-06-11T13:13:16-04:00",
              "goodIdentificationTypeId": "SHOPIFY_PROD_SKU",
              "thruDate": null
            },
            {
              "productId": "20965",
              "lastUpdatedStamp": "2023-03-14T13:13:32-04:00",
              "fromDate": "2022-04-25T09:00:18-04:00",
              "goodIdentificationTypeId": "SKU",
              "idValue": "AGENT",
              "thruDate": null
            },
            {
              "productId": "20965",
              "idValue": "824386706307",
              "lastUpdatedStamp": "2022-03-16T03:00:32-04:00",
              "goodIdentificationTypeId": "UPCA",
              "fromDate": "2020-06-11T13:13:16-04:00",
              "thruDate": null
            }
          ],
          "returnItemAdjustments": [
            {
              "customerReferenceId": null,
              "correspondingProductId": null,
              "orderId": null,
              "includeInShipping": null,
              "comments": "Return Sales Tax",
              "exemptAmount": null,
              "productPromoId": null,
              "taxAuthPartyId": null,
              "lastModifiedByUserLogin": null,
              "lastUpdatedStamp": "2022-02-01T10:41:39-05:00",
              "returnAdjustmentTypeId": "RET_SALES_TAX_ADJ",
              "description": "Return Sales Tax",
              "returnAdjustmentId": "11580",
              "primaryGeoId": null,
              "taxAuthGeoId": null,
              "secondaryGeoId": null,
              "createdByUserLogin": null,
              "orderAdjustmentId": null,
              "returnItemSeqId": "00002",
              "lastModifiedDate": null,
              "sourceReferenceId": null,
              "productPromoRuleId": null,
              "productFeatureId": null,
              "taxAuthorityRateSeqId": null,
              "returnId": "13031",
              "overrideGlAccountId": null,
              "shipGroupSeqId": null,
              "includeInTax": null,
              "amount": 10.73,
              "createdDate": null,
              "productPromoActionSeqId": null,
              "sourcePercentage": null,
              "returnTypeId": "RTN_REFUND"
            }
          ]
        }
      ]
    }
  ]
https://demo-oms.hotwax.io/api/performFind?inputFields=&entityName=&fieldList=&fieldList=&viewSize=1
video
postcodeLookup

OMS Versions

Discover the versions of HotWax Commerce OMS releases.

Introduction

Release - v6.5.0 (5th May 2025)

Information
Value

Release Version

v6.5.0

Release Type

minor

Image Tag

v6.5.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.5.0

Diff

Changelog

Release - v6.4.4 (29th April 2025)

Information
Value

Release Version

v6.4.4

Release Type

Hotfix

Image Tag

v6.4.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.4.4

Diff

Changelog

Release - v6.4.3 (25th April 2025)

Information
Value

Release Version

v6.4.3

Release Type

Hotfix

Image Tag

v6.4.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.4.3

Diff

Changelog

Release - v6.4.2 (24th April 2025)

Information
Value

Release Version

v6.4.2

Release Type

Hotfix

Image Tag

v6.4.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.4.2

Diff

Changelog

Release - v6.4.1 (22th April 2025)

Information
Value

Release Version

v6.4.1

Release Type

Hotfix

Image Tag

v6.4.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.4.1

Diff

Changelog

Release - v6.4.0 (21st April 2025)

Information
Value

Release Version

v6.4.0

Release Type

minor

Image Tag

v6.4.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.4.0

Diff

Changelog

Release - v6.3.9 (29th April 2025)

Information
Value

Release Version

v6.3.9

Release Type

Hotfix

Image Tag

v6.3.9

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.3.9

Diff

Changelog

Release - v6.3.8 (25th April 2025)

Information
Value

Release Version

v6.3.8

Release Type

Hotfix

Image Tag

v6.3.8

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.3.8

Diff

Changelog

Release - v6.3.7 (24th April 2025)

Information
Value

Release Version

v6.3.7

Release Type

Hotfix

Image Tag

v6.3.7

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.3.7

Diff

Changelog

Release - v6.3.6 (22th April 2025)

Information
Value

Release Version

v6.3.6

Release Type

Hotfix

Image Tag

v6.3.6

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.3.6

Diff

Changelog

Release - v6.3.5 (16th April 2025)

Information
Value

Release Version

v6.3.5

Release Type

Hotfix

Image Tag

v6.3.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.3.5

Diff

Changelog

Release - v6.3.4 (15th April 2025)

Information
Value

Release Version

v6.3.4

Release Type

Hotfix

Image Tag

v6.3.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.3.4

Diff

Changelog

Release - v6.3.3 (14th April 2025)

Information
Value

Release Version

v6.3.3

Release Type

Hotfix

Image Tag

v6.3.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.3.3

Diff

Changelog

Release - v6.3.2 (2nd April 2025)

Information
Value

Release Version

v6.3.2

Release Type

Hotfix

Image Tag

v6.3.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.3.2

Diff

Changelog

Release - v6.3.1 (26th March 2025)

Information
Value

Release Version

v6.3.1

Release Type

Hotfix

Image Tag

v6.3.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.3.1

Diff

Changelog

Before pushing oms v6.3.0 release to production, need to make sure maarg deployed on v3.6.1

Release - v6.3.0 (25th March 2025)

Information
Value

Release Version

v6.3.0

Release Type

minor

Image Tag

v6.3.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.3.0

Diff

Changelog

Release - v6.2.16 (29th April 2025)

Information
Value

Release Version

v6.2.16

Release Type

Hotfix

Image Tag

v6.2.16

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.16

Diff

Changelog

Release - v6.2.15 (26th April 2025)

Information
Value

Release Version

v6.2.15

Release Type

Hotfix

Image Tag

v6.2.15

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.15

Diff

Changelog

Release - v6.2.14 (25th April 2025)

Information
Value

Release Version

v6.2.14

Release Type

Hotfix

Image Tag

v6.2.14

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.14

Diff

Changelog

Release - v6.2.14 (25th April 2025)

Information
Value

Release Version

v6.2.14

Release Type

Hotfix

Image Tag

v6.2.14

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.14

Diff

Changelog

Release - v6.2.13 (24th April 2025)

Information
Value

Release Version

v6.2.13

Release Type

Hotfix

Image Tag

v6.2.13

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.13

Diff

Changelog

Release - v6.2.12 (23th April 2025)

Information
Value

Release Version

v6.2.12

Release Type

Hotfix

Image Tag

v6.2.12

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.12

Diff

Changelog

Release - v6.2.11 (22th April 2025)

Information
Value

Release Version

v6.2.11

Release Type

Hotfix

Image Tag

v6.2.11

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.11

Diff

Changelog

Release - v6.2.10 (16th April 2025)

Information
Value

Release Version

v6.2.10

Release Type

Hotfix

Image Tag

v6.2.10

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.10

Diff

Changelog

Release - v6.2.8 (14th April 2025)

Information
Value

Release Version

v6.2.8

Release Type

Hotfix

Image Tag

v6.2.8

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.8

Diff

Changelog

Release - v6.2.7 (26th March 2025)

Information
Value

Release Version

v6.2.7

Release Type

Hotfix

Image Tag

v6.2.7

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.7

Diff

Changelog

Release - v6.2.6 (21st March 2025)

Information
Value

Release Version

v6.2.6

Release Type

Hotfix

Image Tag

v6.2.6

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.6

Diff

Changelog

Release - v6.2.5 (6th March 2025)

Information
Value

Release Version

v6.2.5

Release Type

Hotfix

Image Tag

v6.2.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.5

Diff

Changelog

Release - v6.2.4 (25th February 2025)

Information
Value

Release Version

v6.2.4

Release Type

Hotfix

Image Tag

v6.2.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.4

Diff

Changelog

Release - v6.2.3 (25th February 2025)

Information
Value

Release Version

v6.2.3

Release Type

Hotfix

Image Tag

v6.2.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.3

Diff

Changelog

Run refreshSolr service only on first production server deployment.

Release - v6.2.2 (20th February 2025)

Information
Value

Release Version

v6.2.2

Release Type

Hotfix

Image Tag

v6.2.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.2

Diff

Changelog

Release - v6.2.1 (20th February 2025)

Information
Value

Release Version

v6.2.1

Release Type

Hotfix

Image Tag

v6.2.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.1

Diff

Changelog

Do not deploy any instance on v6.2.0 tag

Release - v6.2.0 (20th February 2025)

Information
Value

Release Version

v6.2.0

Release Type

minor

Image Tag

v6.2.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.2.0

Diff

Changelog

Release - v6.1.10 (6th March 2025)

Information
Value

Release Version

v6.1.10

Release Type

Hotfix

Image Tag

v6.1.10

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.1.10

Diff

Changelog

Release - v6.1.7 (11th February 2025)

Information
Value

Release Version

v6.1.7

Release Type

Hotfix

Image Tag

v6.1.7

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.1.7

Diff

Changelog

Release - v6.1.6 (10th February 2025)

Information
Value

Release Version

v6.1.6

Release Type

Hotfix

Image Tag

v6.1.6

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.1.6

Diff

Changelog

Release - v6.1.5 (10th February 2025)

Information
Value

Release Version

v6.1.5

Release Type

Hotfix

Image Tag

v6.1.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.1.5

Diff

Changelog

Release - v6.1.4 (04th February 2025)

Information
Value

Release Version

v6.1.4

Release Type

Hotfix

Image Tag

v6.1.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.1.4

Diff

Changelog

Release - v6.1.3 (31th January 2025)

Information
Value

Release Version

v6.1.3

Release Type

Hotfix

Image Tag

v6.1.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.1.3

Diff

Changelog

Release - v6.1.2 (30th January 2025)

Information
Value

Release Version

v6.1.2

Release Type

Hotfix

Image Tag

v6.1.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.1.2

Diff

Changelog

Release - v6.0.4 (24th January 2025)

Information
Value

Release Version

v6.0.4

Release Type

Hotfix

Image Tag

v6.0.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.0.4

Diff

Changelog

Release - v6.0.3 (20th January 2025)

Information
Value

Release Version

v6.0.3

Release Type

Hotfix

Image Tag

v6.0.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.0.3

Diff

Changelog

Release - v6.0.2 (14th January 2025)

Information
Value

Release Version

v6.0.2

Release Type

Hotfix

Image Tag

v6.0.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.0.2

Diff

Changelog

Release - v6.0.1 (10th January 2025)

Information
Value

Release Version

v6.0.1

Release Type

Hotfix

Image Tag

v6.0.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v6.0.1

Diff

Changelog

Release - v6.0.0 (2nd January 2025)

Information
Value

Release Version

v6.0.0

Release Type

Major

Image Tag

v6.0.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

Release - v5.18.16 (20th January 2025)

Information
Value

Release Version

v5.18.16

Release Type

Hotfix

Image Tag

v5.18.16

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.16

Diff

Changelog

Release - v5.18.15 (17th January 2025)

Information
Value

Release Version

v5.18.15

Release Type

Hotfix

Image Tag

v5.18.15

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.15

Diff

Changelog

Release - v5.18.14 (10th January 2025)

Information
Value

Release Version

v5.18.14

Release Type

Hotfix

Image Tag

v5.18.14

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.14

Diff

Changelog

Release - v5.18.13 (13th December 2024)

Information
Value

Release Version

v5.18.13

Release Type

Hotfix

Image Tag

v5.18.13

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.13

Diff

Changelog

Release - v5.18.11 (05th December 2024)

Information
Value

Release Version

v5.18.11

Release Type

Hotfix

Image Tag

v5.18.11

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.11

Diff

Changelog

Release - v5.18.10 (27th November 2024)

Information
Value

Release Version

v5.18.10

Release Type

Hotfix

Image Tag

v5.18.10

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.10

Diff

Changelog

Release - v5.18.9 (20th November 2024)

Information
Value

Release Version

v5.18.9

Release Type

Hotfix

Image Tag

v5.18.9

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.9

Diff

Changelog

Release - v5.18.8 (15th November 2024)

Information
Value

Release Version

v5.18.8

Release Type

Hotfix

Image Tag

v5.18.8

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.8

Diff

Changelog

Release - v5.18.6 (12th November 2024)

Information
Value

Release Version

v5.18.6

Release Type

Hotfix

Image Tag

v5.18.6

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.6

Diff

Changelog

Release - v5.18.3 (06th November 2024)

Information
Value

Release Version

v5.18.3

Release Type

Hotfix

Image Tag

v5.18.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.3

Diff

Changelog

Release - v5.18.2 (06th November 2024)

Information
Value

Release Version

v5.18.2

Release Type

Hotfix

Image Tag

v5.18.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.2

Diff

Changelog

Release - v5.18.1 (23rd October 2024)

Information
Value

Release Version

v5.18.1

Release Type

Hotfix

Image Tag

v5.18.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest-v5.18.1

Diff

Changelog

Release - v5.18.0 (18th October 2024)

Information
Value

Release Version

v5.18.0

Release Type

Minor

Image Tag

v5.18.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

Hotfix - v5.17.17 (27th November 2024)

Information
Value

Release Version

v5.17.17

Release Type

Hotfix

Image Tag

v5.17.17

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.17

Diff

Changelog

Hotfix - v5.17.16 (15th November 2024)

Information
Value

Release Version

v5.17.16

Release Type

Hotfix

Image Tag

v5.17.16

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.16

Diff

Changelog

Hotfix - v5.17.14 (12th November 2024)

Information
Value

Release Version

v5.17.14

Release Type

Hotfix

Image Tag

v5.17.14

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.14

Diff

Changelog

Hotfix - v5.17.11 (06th November 2024)

Information
Value

Release Version

v5.17.11

Release Type

Hotfix

Image Tag

v5.17.11

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.11

Diff

Changelog

Hotfix - v5.17.10 (06th November 2024)

Information
Value

Release Version

v5.17.10

Release Type

Hotfix

Image Tag

v5.17.10

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.10

Diff

Changelog

Hotfix - v5.17.9 (23rd October 2024)

Information
Value

Release Version

v5.17.9

Release Type

Hotfix

Image Tag

v5.17.9

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.9

Diff

Changelog

Hotfix - v5.17.8 (23rd October 2024)

Information
Value

Release Version

v5.17.8

Release Type

Hotfix

Image Tag

v5.17.8

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.8

Diff

Changelog

Hotfix - v5.17.7 (23rd October 2024)

Information
Value

Release Version

v5.17.7

Release Type

Hotfix

Image Tag

v5.17.7

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.7

Diff

Changelog

Hotfix - v5.17.6 (22nd October 2024)

Information
Value

Release Version

v5.17.6

Release Type

Hotfix

Image Tag

v5.17.6

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.6

Diff

Changelog

Hotfix - v5.17.5 (16th October 2024)

Information
Value

Release Version

v5.17.5

Release Type

Hotfix

Image Tag

v5.17.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.5

Diff

Changelog

Hotfix - v5.17.4 (09th October 2024)

Information
Value

Release Version

v5.17.4

Release Type

Hotfix

Image Tag

v5.17.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.4

Diff

Changelog

Hotfix - v5.17.3 (06th October 2024)

Information
Value

Release Version

v5.17.3

Release Type

Hotfix

Image Tag

v5.17.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.3

Diff

Changelog

Hotfix - v5.17.2 (03rd October 2024)

Information
Value

Release Version

v5.17.2

Release Type

Hotfix

Image Tag

v5.17.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.2

Diff

Changelog

Hotfix - v5.17.1 (30th September 2024)

Information
Value

Release Version

v5.17.1

Release Type

Hotfix

Image Tag

v5.17.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.17.1

Diff

Changelog

Release - v5.17.0 (25th September 2024)

Information
Value

Release Version

v5.17.0

Release Type

Minor

Image Tag

v5.17.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

                                                                                                                                   | 

Hotfix - v5.16.13 (17th October 2024)

Information
Value

Release Version

v5.16.13

Release Type

Hotfix

Image Tag

v5.16.13

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.16.13

Diff

Changelog

Hotfix - v5.16.12 (14th October 2024)

Information
Value

Release Version

v5.16.12

Release Type

Hotfix

Image Tag

v5.16.12

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.16.12

Diff

Changelog

Hotfix - v5.16.11 (11th October 2024)

Information
Value

Release Version

v5.16.11

Release Type

Hotfix

Image Tag

v5.16.11

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.16.11

Diff

Changelog

Hotfix - v5.16.10 (04th October 2024)

Information
Value

Release Version

v5.16.10

Release Type

Hotfix

Image Tag

v5.16.10

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.16.10

Diff

Changelog

Hotfix - v5.16.9 (03rd October 2024)

Information
Value

Release Version

v5.16.9

Release Type

Hotfix

Image Tag

v5.16.9

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.16.9

Diff

Changelog

Hotfix - v5.16.8 (30th September 2024)

Information
Value

Release Version

v5.16.8

Release Type

Hotfix

Image Tag

v5.16.8

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.16.8

Diff

Changelog

Hotfix - v5.16.7 (24th September 2024)

Information
Value

Release Version

v5.16.7

Release Type

Hotfix

Image Tag

v5.16.7

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.16.7

Diff

Changelog

Hotfix - v5.16.6 (24th September 2024)

Information
Value

Release Version

v5.16.6

Release Type

Hotfix

Image Tag

v5.16.6

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.16.6

Diff

Changelog

Hotfix - v5.16.5 (17th September 2024)

Information
Value

Release Version

v5.16.5

Release Type

Hotfix

Image Tag

v5.16.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.16.5

Diff

Changelog

Release - v5.16.2 (10th September 2024)

Information
Value

Release Version

v5.16.2

Release Type

Minor

Image Tag

v5.16.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

                                                                                                                                   | 

Hotfix - v5.15.8 (30th September 2024)

Information
Value

Release Version

v5.15.8

Release Type

Hotfix

Image Tag

v5.15.8

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.15.8

Diff

Changelog

Hotfix - v5.15.7 (17th September 2024)

Information
Value

Release Version

v5.15.7

Release Type

Hotfix

Image Tag

v5.15.7

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.15.7

Diff

Changelog

Hotfix - v5.15.5 (10th September 2024)

Information
Value

Release Version

v5.15.5

Release Type

Hotfix

Image Tag

v5.15.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.15.5

Diff

Changelog

Hotfix - v5.15.4 (4th September 2024)

Information
Value

Release Version

v5.15.4

Release Type

Hotfix

Image Tag

v5.15.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.15.4

Diff

Changelog

Hotfix - v5.15.3 (30th August 2024)

Information
Value

Release Version

v5.15.3

Release Type

Hotfix

Image Tag

v5.15.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.15.3

Diff

Changelog

Hotfix - v5.15.2 (27th August 2024)

Information
Value

Release Version

v5.15.2

Release Type

Hotfix

Image Tag

v5.15.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.15.2

Diff

Changelog

Hotfix - v5.15.1 (26th August 2024)

Information
Value

Release Version

v5.15.1

Release Type

Hotfix

Image Tag

v5.15.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.15.1

Diff

Changelog

Release - v5.15.0 (23rd August 2024)

Information
Value

Release Version

v5.15.0

Release Type

Minor

Image Tag

v5.15.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

                                                                                                                                   | 

Hotfix - v5.14.9 (10th September 2024)

Information
Value

Release Version

v5.14.9

Release Type

Hotfix

Image Tag

v5.14.9

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.14.9

Diff

Changelog

Hotfix - v5.14.7 (5th September 2024)

Information
Value

Release Version

v5.14.7

Release Type

Hotfix

Image Tag

v5.14.7

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.14.7

Diff

Changelog

Hotfix - v5.14.6 (5th September 2024)

Information
Value

Release Version

v5.14.6

Release Type

Hotfix

Image Tag

v5.14.6

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.14.6

Diff

Changelog

Hotfix - v5.14.5 (30th August 2024)

Information
Value

Release Version

v5.14.5

Release Type

Hotfix

Image Tag

v5.14.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.14.5

Diff

Changelog

Hotfix - v5.14.4 (27th August 2024)

Information
Value

Release Version

v5.14.4

Release Type

Hotfix

Image Tag

v5.14.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.14.4

Diff

Changelog

Hotfix - v5.14.3 (8th August 2024)

Information
Value

Release Version

v5.14.3

Release Type

Hotfix

Image Tag

v5.14.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.14.3

Diff

Changelog

Hotfix - v5.14.2 (6th August 2024)

Information
Value

Release Version

v5.14.2

Release Type

Hotfix

Image Tag

v5.14.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.14.2

Diff

Changelog

Hotfix - v5.14.1 (31st July 2024)

Information
Value

Release Version

v5.14.1

Release Type

Hotfix

Image Tag

v5.14.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.14.1

Diff

Changelog

Release - v5.14.0 (26th July 2024)

Information
Value

Release Version

v5.14.0

Release Type

Minor

Image Tag

v5.14.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

                                                                                                                                   | 

Hotfix - v5.13.11 (6th August 2024)

Information
Value

Release Version

v5.13.11

Release Type

Hotfix

Image Tag

v5.13.11

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.13.10

Diff

Changelog

Hotfix - v5.13.10 (31st July 2024)

Information
Value

Release Version

v5.13.10

Release Type

Hotfix

Image Tag

v5.13.10

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.13.10

Diff

Changelog

Hotfix - v5.13.9 (26th July 2024)

Information
Value

Release Version

v5.13.9

Release Type

Hotfix

Image Tag

v5.13.9

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.13.9

Diff

Changelog

Hotfix - v5.13.8 (22nd July 2024)

Information
Value

Release Version

v5.13.8

Release Type

Hotfix

Image Tag

v5.13.8

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.13.8

Diff

Changelog

Hotfix - v5.13.7 (22nd July 2024)

Information
Value

Release Version

v5.13.7

Release Type

Hotfix

Image Tag

v5.13.7

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.13.7

Diff

Changelog

Hotfix - v5.13.6 (17th July 2024)

Information
Value

Release Version

v5.13.6

Release Type

Hotfix

Image Tag

v5.13.6

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.13.6

Diff

Changelog

Hotfix - v5.13.4 (13th July 2024)

Information
Value

Release Version

v5.13.4

Release Type

Hotfix

Image Tag

v5.13.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.13.4

Diff

Changelog

Hotfix - v5.13.3 (9th July 2024)

Information
Value

Release Version

v5.13.3

Release Type

Hotfix

Image Tag

v5.13.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.13.3

Diff

Changelog

Hotfix - v5.13.2 (8th July 2024)

Information
Value

Release Version

v5.13.2

Release Type

Hotfix

Image Tag

v5.13.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.13.2

Diff

Changelog

Hotfix - v5.13.1 (27th June 2024)

Information
Value

Release Version

v5.13.1

Release Type

Hotfix

Image Tag

v5.13.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.13.1

Diff

Changelog

Release - v5.13.0 (25th June 2024)

Information
Value

Release Version

v5.13.0

Release Type

Minor

Image Tag

v5.13.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

                                                                                                                                   | 

Hotfix - v5.12.10 (26th July 2024)

Information
Value

Release Version

v5.12.10

Release Type

Hotfix

Image Tag

v5.12.10

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.12.10

Diff

Changelog

Hotfix - v5.12.9 (26th July 2024)

Information
Value

Release Version

v5.12.9

Release Type

Hotfix

Image Tag

v5.12.9

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.12.9

Diff

Changelog

Hotfix - v5.12.7 (17th July 2024)

Information
Value

Release Version

v5.12.7

Release Type

Hotfix

Image Tag

v5.12.7

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.12.7

Diff

Changelog

Hotfix - v5.12.5 (13th July 2024)

Information
Value

Release Version

v5.12.5

Release Type

Hotfix

Image Tag

v5.12.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.12.5

Diff

Changelog

Hotfix - v5.12.4 (8th July 2024)

Information
Value

Release Version

v5.12.4

Release Type

Hotfix

Image Tag

v5.12.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.12.4

Diff

Changelog

Hotfix - v5.12.3 (19th June 2024)

Information
Value

Release Version

v5.12.3

Release Type

Hotfix

Image Tag

v5.12.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.12.3

Diff

Changelog

Hotfix - v5.12.2 (18th June 2024)

Information
Value

Release Version

v5.12.2

Release Type

Hotfix

Image Tag

v5.12.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.12.2

Diff

Changelog

Hotfix - v5.12.1 (18th June 2024)

Information
Value

Release Version

v5.12.1

Release Type

Hotfix

Image Tag

v5.12.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.12.1

Diff

Changelog

Release - v5.12.0 (13th June 2024)

Information
Value

Release Version

v5.12.0

Release Type

Minor

Image Tag

v5.12.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

                                                                                                                                   | 

Hotfix - v5.11.5 (13th July 2024)

Information
Value

Release Version

v5.11.5

Release Type

Hotfix

Image Tag

v5.11.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.11.5

Diff

Changelog

Hotfix - v5.11.4 (13th July 2024)

Information
Value

Release Version

v5.11.4

Release Type

Hotfix

Image Tag

v5.11.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.11.4

Diff

Changelog

Hotfix - v5.11.3 (14th June 2024)

Information
Value

Release Version

v5.11.3

Release Type

Hotfix

Image Tag

v5.11.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.11.3

Diff

Changelog

Hotfix - v5.11.2 (13th June 2024)

Information
Value

Release Version

v5.11.2

Release Type

Hotfix

Image Tag

v5.11.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.11.2

Diff

Changelog

Hotfix - v5.11.1 (10th June 2024)

Information
Value

Release Version

v5.11.1

Release Type

Hotfix

Image Tag

v5.11.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.11.1

Diff

Changelog

Release - v5.11.0 (29th May 2024)

Information
Value

Release Version

v5.11.0

Release Type

Minor

Image Tag

v5.11.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

                                                                                                                                   | 

Hotfix - v5.10.6 (13th July 2024)

Information
Value

Release Version

v5.10.6

Release Type

Hotfix

Image Tag

v5.10.6

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.10.6

Diff

Changelog

Hotfix - v5.10.5 (13th July 2024)

Information
Value

Release Version

v5.10.5

Release Type

Hotfix

Image Tag

v5.10.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.10.5

Diff

Changelog

Hotfix - v5.10.4 (14th June 2024)

Information
Value

Release Version

v5.10.4

Release Type

Hotfix

Image Tag

v5.10.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.10.4

Diff

Changelog

Hotfix - v5.10.3 (10th June 2024)

Information
Value

Release Version

v5.10.3

Release Type

Hotfix

Image Tag

v5.10.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.10.3

Diff

Changelog

Hotfix - v5.10.2 (10th June 2024)

Information
Value

Release Version

v5.10.2

Release Type

Hotfix

Image Tag

v5.10.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.10.2

Diff

Changelog

Hotfix - v5.10.1 (10th June 2024)

Information
Value

Release Version

v5.10.1

Release Type

Hotfix

Image Tag

v5.10.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.10.1

Diff

Changelog

Release - v5.10.0 (21st May 2024)

Information
Value

Release Version

v5.10.0

Release Type

Minor

Image Tag

v5.10.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

                                                                                                                                   | 

Hotfix - v5.9.5 (21st May 2024)

Information
Value

Release Version

v5.9.5

Release Type

Hotfix

Image Tag

v5.9.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.9.5

Diff

Changelog

Hotfix - v5.9.4 (21st May 2024)

Information
Value

Release Version

v5.9.4

Release Type

Hotfix

Image Tag

v5.9.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.9.4

Diff

Changelog

Hotfix - v5.9.3 (21st May 2024)

Information
Value

Release Version

v5.9.3

Release Type

Hotfix

Image Tag

v5.9.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.9.3

Diff

Changelog

Hotfix - v5.9.2 (29th Apr 2024)

Information
Value

Release Version

v5.9.2

Release Type

Hotfix

Image Tag

v5.9.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.9.2

Diff

Changelog

Hotfix - v5.9.1 (29th Apr 2024)

Information
Value

Release Version

v5.9.1

Release Type

Hotfix

Image Tag

v5.9.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.9.1

Diff

Changelog

Release - v5.9.0 (25th Apr 2024)

Information
Value

Release Version

v5.9.0

Release Type

Minor

Image Tag

v5.9.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:v5.9.0

Diff

Changelog

                                                                                                                                   | 

Hotfix - v5.8.9 (8th May 2024)

Information
Value

Release Version

v5.8.9

Release Type

Hotfix

Image Tag

v5.8.9

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.8.9

Diff

Changelog

Hotfix - v5.8.3 (29th Apr 2024)

Information
Value

Release Version

v5.8.3

Release Type

Hotfix

Image Tag

v5.8.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.8.3

Diff

Changelog

Hotfix - v5.8.2 (29th Apr 2024)

Information
Value

Release Version

v5.8.2

Release Type

Hotfix

Image Tag

v5.8.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.8.2

Diff

Changelog

Hotfix - v5.8.1 (18th Apr 2024)

Information
Value

Release Version

v5.8.1

Release Type

Hotfix

Image Tag

v5.8.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.8.1

Diff

Changelog

Release - v5.8.0 (10th Apr 2024)

Information
Value

Release Version

v5.8.0

Release Type

Minor

Image Tag

v5.8.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

                                                                                                                                   | 

Hotfix - v5.7.6 (18th Apr 2024)

Information
Value

Release Version

v5.7.6

Release Type

Hotfix

Image Tag

v5.7.6

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.7.6

Diff

Changelog

Hotfix - v5.7.4 (09th Apr 2024)

Information
Value

Release Version

v5.7.4

Release Type

Hotfix

Image Tag

v5.7.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.7.4

Diff

Changelog

Hotfix - v5.7.3 (05th Apr 2024)

Information
Value

Release Version

v5.7.3

Release Type

Hotfix

Image Tag

v5.7.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.7.3

Diff

Changelog

Release - v5.7.0 (05th Apr 2024)

Information
Value

Release Version

v5.7.0

Release Type

Minor

Image Tag

v5.7.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

Hotfix - v5.6.2 (09th Apr 2024)

Information
Value

Release Version

v5.6.2

Release Type

Hotfix

Image Tag

v5.6.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.6.2

Diff

Changelog

Hotfix - v5.6.1 (14th Mar 2024)

Information
Value

Release Version

v5.6.1

Release Type

Hotfix

Image Tag

v5.6.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.6.1

Diff

Changelog

Release - v5.6.0 (11th Mar 2024)

Information
Value

Release Version

v5.6.0

Release Type

Minor

Image Tag

v5.6.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

Hotfix - v5.5.6 (09th Apr 2024)

Information
Value

Release Version

v5.5.6

Release Type

Hotfix

Image Tag

v5.5.6

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.5.6

Diff

Changelog

Hotfix - v5.5.5 (22th Mar 2024)

Information
Value

Release Version

v5.5.5

Release Type

Hotfix

Image Tag

v5.5.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.5.5

Diff

Changelog

Hotfix - v5.5.4 (21st Mar 2024)

Information
Value

Release Version

v5.5.4

Release Type

Hotfix

Image Tag

v5.5.4

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.5.4

Diff

Changelog

Hotfix - v5.5.3 (14th Mar 2024)

Information
Value

Release Version

v5.5.3

Release Type

Hotfix

Image Tag

v5.5.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.5.3

Diff

Changelog

Latest Release - v5.5.1 (28th Feb 2024)

Information
Value

Release Version

v5.5.1

Release Type

Hotfix

Image Tag

v5.5.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.5.1

Diff

Changelog

No SQL data to upload.

No upgrade steps to follow.

Release - v5.5.0 (27th Feb 2024)

Information
Value

Release Version

v5.5.0

Release Type

Minor

Image Tag

v5.5.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

Hotfix - v5.4.5 (27th Feb 2024)

Information
Value

Release Version

v5.4.5

Release Type

Hotfix

Image Tag

v5.4.5

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.4.5

Diff

Changelog

Hotfix - v5.4.3 (19th Feb 2024)

Information
Value

Release Version

v5.4.3

Release Type

Hotfix

Image Tag

v5.4.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.4.3

Diff

Changelog

Upgrade Data

ReturnAdjustmentType description="Appeasement" hasTable="N" returnAdjustmentTypeId="APPEASEMENT">

Hotfix - v5.4.1 (10th Feb 2024)

Information
Value

Release Version

v5.4.1

Release Type

Hotfix

Image Tag

v5.4.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.4.1

Diff

Changelog

Release - v5.4.0 (8th Feb 2024)

Information
Value

Release Version

v5.4.0

Release Type

Minor

Image Tag

v5.4.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

Hotfix - v5.3.3 (7th Feb 2024)

Information
Value

Release Version

v5.3.3

Release Type

Hotfix

Image Tag

v5.3.3

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.3.3

Diff

Changelog

Hotfix - v5.3.2 (6th Feb 2024)

Information
Value

Release Version

v5.3.2

Release Type

Hotfix

Image Tag

v5.3.2

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.3.2

Diff

Changelog

Release - v5.3.0 (19nd Jan 2024)

Information
Value

Release Version

v5.3.0

Release Type

Minor

Image Tag

v5.3.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

Hotfix - v5.2.1 (11th Jan 2024)

Information
Value

Release Version

v5.2.1

Release Type

Hotfix

Image Tag

v5.2.1

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-v5.2.1

Diff

Changelog

Release - v5.2.0 (2nd Jan 2024)

Information
Value

Release Version

v5.2.0

Release Type

Minor

Image Tag

v5.2.0

Image URL

289432782788.dkr.ecr.us-east-1.amazonaws.com/omscoreimage:omscoreimage-latest

Diff

Changelog

Release - v5.1.0

Information
Value

Release Version

v5.1.0

Release Type

Minor

Image Tag

v5.1.0

Image URL

[Latest Image URL]

Diff

Changelog

Fulfilled Orders Items

For information on previous releases, please consult the .

To find details about SOLR versions, refer to the

If you are preparing a new release, use this

previous document
SOLR version document
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade SQL
Link to Upgrade Data
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
Link to Upgrade Data
Link to Upgrade SQL
Link to Upgrade Steps
template
[ {
  "productStoreId" : "NN_STORE",
  "orderId" : "36421",
  "orderName" : "NNUS#10055",
  "orderDate" : "2022-06-17T07:24:32-04:00",
  "orderStatusId" : "ORDER_COMPLETED",
  "entryDate" : "2022-06-17T07:26:32-04:00",
  "currency" : "USD",
  "grandTotal" : 70,
  "orderItemSeqId" : null,
  "itemStatusId" : null,
  "itemQuantity" : null,
  "unitPrice" : null,
  "orderItemExternalId" : null,
  "shipGroupSeqId" : null,
  "slaShipmentMethodTypeId" : null,
  "postalContactMechId" : null,
  "telecomContactMechId" : null,
  "externalFulfillmentOrderItemId" : null,
  "fulfillmentStatus" : null,
  "customerFirstName" : "Ashish",
  "customerLastName" : "Sharma",
  "facilityId" : null,
  "facilityExternalId" : null,
  "facilityTypeId" : null,
  "parentFacilityTypeId" : null,
  "statusDatetime" : null,
  "productId" : null,
  "salesChannel" : "WEB_CHANNEL",
  "customerPartyId" : "36695",
  "shippedQuantity" : null,
  "shipmentId" : null,
  "shipmentItemSeqId" : null,
  "shippedProductId" : null,
  "statusId" : null,
  "destinationContactMechId" : null,
  "destinationTelecomNumberId" : null,
  "shipmentMethodTypeId" : null,
  "trackingIdNumber" : null,
  "carrierPartyId" : null,
  "orderIdentifications" : [ {
    "fromDate" : "2022-06-17T07:26:32-04:00",
    "orderId" : "36421",
    "lastUpdatedStamp" : "2022-06-17T07:26:32-04:00",
    "idValue" : "4449150697543",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_ID",
    "thruDate" : null
  }, {
    "idValue" : "NNUS#10055",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_NAME",
    "orderId" : "36421",
    "fromDate" : "2022-06-17T07:26:32-04:00",
    "lastUpdatedStamp" : "2022-06-17T07:26:32-04:00",
    "thruDate" : null
  }, {
    "orderIdentificationTypeId" : "SHOPIFY_ORD_NO",
    "idValue" : "9055",
    "orderId" : "36421",
    "fromDate" : "2022-06-17T07:26:32-04:00",
    "thruDate" : null,
    "lastUpdatedStamp" : "2022-06-17T07:26:32-04:00"
  } ],
  "customerPartyIdentifications" : [ {
    "lastUpdatedStamp" : "2021-12-28T06:09:33-05:00",
    "partyId" : "36695",
    "partyIdentificationTypeId" : "SHOPIFY_CUST_ID",
    "idValue" : "3304692285511"
  } ],
  "billTo" : null,
  "orderAdjustments" : [ {
    "customerReferenceId" : null,
    "correspondingProductId" : null,
    "orderItemSeqId" : "_NA_",
    "includeInShipping" : null,
    "description" : null,
    "exemptAmount" : null,
    "productPromoId" : null,
    "orderId" : "36421",
    "taxAuthPartyId" : null,
    "lastModifiedByUserLogin" : null,
    "oldPercentage" : null,
    "primaryGeoId" : null,
    "taxAuthGeoId" : null,
    "originalAdjustmentId" : null,
    "secondaryGeoId" : null,
    "createdByUserLogin" : null,
    "orderAdjustmentId" : null,
    "amountAlreadyIncluded" : null,
    "lastUpdatedStamp" : null,
    "amount" : 0,
    "comments" : null,
    "recurringAmount" : null,
    "lastModifiedDate" : null,
    "sourceReferenceId" : null,
    "productPromoRuleId" : null,
    "isManual" : null,
    "productFeatureId" : null,
    "taxAuthorityRateSeqId" : null,
    "overrideGlAccountId" : null,
    "oldAmountPerQuantity" : null,
    "shipGroupSeqId" : null,
    "includeInTax" : null,
    "createdDate" : null,
    "productPromoActionSeqId" : null,
    "sourcePercentage" : null,
    "orderAdjustmentTypeId" : "DONATION_ADJUSTMENT"
  } ],
  "shipments" : [ {
    "trackingNumber" : null,
    "carrierPartyId" : null,
    "shipmentMethodTypeId" : null,
    "shipTo" : null,
    "shipmentItems" : [ {
      "shipmentId" : null,
      "shipmentItemSeqId" : null,
      "orderId" : "36421",
      "orderItemSeqId" : "00101",
      "orderItemExternalId" : "11303349846087",
      "shipGroupSeqId" : "00001",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "STANDARD",
      "statusDatetime" : "2022-06-17T07:26:32-04:00",
      "productId" : "119214",
      "unitPrice" : 10,
      "facilityId" : "_NA_",
      "facilityExternalId" : "_NA_",
      "facilityTypeId" : "NA",
      "parentFacilityTypeId" : "VIRTUAL_FACILITY",
      "shippedQuantity" : null,
      "goodIdentifications" : [ {
        "lastUpdatedStamp" : "2022-06-17T01:40:13-04:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "gift1234567",
        "productId" : "119214",
        "fromDate" : "2022-06-17T01:40:13-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      } ]
    }, {
      "shipmentId" : null,
      "shipmentItemSeqId" : null,
      "orderId" : "36421",
      "orderItemSeqId" : "00102",
      "orderItemExternalId" : "11303349846087",
      "shipGroupSeqId" : "00001",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "STANDARD",
      "statusDatetime" : "2022-06-17T07:26:32-04:00",
      "productId" : "119214",
      "unitPrice" : 10,
      "facilityId" : "_NA_",
      "facilityExternalId" : "_NA_",
      "facilityTypeId" : "NA",
      "parentFacilityTypeId" : "VIRTUAL_FACILITY",
      "shippedQuantity" : null,
      "goodIdentifications" : [ {
        "lastUpdatedStamp" : "2022-06-17T01:40:13-04:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "gift1234567",
        "productId" : "119214",
        "fromDate" : "2022-06-17T01:40:13-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      } ]
    }, {
      "shipmentId" : null,
      "shipmentItemSeqId" : null,
      "orderId" : "36421",
      "orderItemSeqId" : "00103",
      "orderItemExternalId" : "11303349813319",
      "shipGroupSeqId" : "00001",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "STANDARD",
      "statusDatetime" : "2022-06-17T07:26:32-04:00",
      "productId" : "119216",
      "unitPrice" : 50,
      "facilityId" : "_NA_",
      "facilityExternalId" : "_NA_",
      "facilityTypeId" : "NA",
      "parentFacilityTypeId" : "VIRTUAL_FACILITY",
      "shippedQuantity" : null,
      "goodIdentifications" : [ ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "orderId" : "36421",
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      } ]
    } ]
  } ]
}, {
  "productStoreId" : "NN_STORE",
  "orderId" : "39670",
  "orderName" : "NNUS#11861",
  "orderDate" : "2023-01-30T03:40:49-05:00",
  "orderStatusId" : "ORDER_COMPLETED",
  "entryDate" : "2023-01-30T03:43:47-05:00",
  "currency" : "USD",
  "grandTotal" : 457.76,
  "orderItemSeqId" : null,
  "itemStatusId" : null,
  "itemQuantity" : null,
  "unitPrice" : null,
  "orderItemExternalId" : null,
  "shipGroupSeqId" : null,
  "slaShipmentMethodTypeId" : null,
  "postalContactMechId" : "148471",
  "telecomContactMechId" : null,
  "externalFulfillmentOrderItemId" : null,
  "fulfillmentStatus" : null,
  "customerFirstName" : "Tyrion",
  "customerLastName" : "Lannister",
  "facilityId" : null,
  "facilityExternalId" : null,
  "facilityTypeId" : null,
  "parentFacilityTypeId" : null,
  "statusDatetime" : null,
  "productId" : null,
  "salesChannel" : "WEB_CHANNEL",
  "customerPartyId" : "44390",
  "shippedQuantity" : null,
  "shipmentId" : null,
  "shipmentItemSeqId" : null,
  "shippedProductId" : null,
  "statusId" : null,
  "destinationContactMechId" : null,
  "destinationTelecomNumberId" : null,
  "shipmentMethodTypeId" : null,
  "trackingIdNumber" : null,
  "carrierPartyId" : null,
  "orderIdentifications" : [ {
    "lastUpdatedStamp" : "2023-01-30T03:43:48-05:00",
    "orderId" : "39670",
    "fromDate" : "2023-01-30T03:43:48-05:00",
    "idValue" : "4791361503303",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_ID",
    "thruDate" : null
  }, {
    "idValue" : "NNUS#11861",
    "orderId" : "39670",
    "lastUpdatedStamp" : "2023-01-30T03:43:48-05:00",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_NAME",
    "fromDate" : "2023-01-30T03:43:48-05:00",
    "thruDate" : null
  }, {
    "orderId" : "39670",
    "orderIdentificationTypeId" : "SHOPIFY_ORD_NO",
    "lastUpdatedStamp" : "2023-01-30T03:43:48-05:00",
    "fromDate" : "2023-01-30T03:43:48-05:00",
    "idValue" : "10861",
    "thruDate" : null
  } ],
  "customerPartyIdentifications" : [ {
    "partyIdentificationTypeId" : "SHOPIFY_CUST_ID",
    "idValue" : "5736185397319",
    "lastUpdatedStamp" : "2022-07-20T02:30:00-04:00",
    "partyId" : "44390"
  } ],
  "billTo" : null,
  "orderAdjustments" : [ {
    "customerReferenceId" : null,
    "correspondingProductId" : null,
    "orderItemSeqId" : "_NA_",
    "orderId" : "39670",
    "includeInShipping" : null,
    "description" : null,
    "exemptAmount" : null,
    "productPromoId" : null,
    "taxAuthPartyId" : null,
    "lastModifiedByUserLogin" : null,
    "oldPercentage" : null,
    "primaryGeoId" : null,
    "taxAuthGeoId" : null,
    "originalAdjustmentId" : null,
    "secondaryGeoId" : null,
    "createdByUserLogin" : null,
    "orderAdjustmentId" : null,
    "amountAlreadyIncluded" : null,
    "lastUpdatedStamp" : null,
    "amount" : 0,
    "comments" : null,
    "recurringAmount" : null,
    "lastModifiedDate" : null,
    "sourceReferenceId" : null,
    "productPromoRuleId" : null,
    "isManual" : null,
    "productFeatureId" : null,
    "taxAuthorityRateSeqId" : null,
    "overrideGlAccountId" : null,
    "oldAmountPerQuantity" : null,
    "shipGroupSeqId" : null,
    "includeInTax" : null,
    "createdDate" : null,
    "productPromoActionSeqId" : null,
    "sourcePercentage" : null,
    "orderAdjustmentTypeId" : "DONATION_ADJUSTMENT"
  }, {
    "customerReferenceId" : null,
    "correspondingProductId" : null,
    "orderItemSeqId" : "_NA_",
    "orderId" : "39670",
    "includeInShipping" : null,
    "description" : null,
    "exemptAmount" : null,
    "productPromoId" : null,
    "taxAuthPartyId" : null,
    "lastModifiedByUserLogin" : null,
    "oldPercentage" : null,
    "orderAdjustmentTypeId" : "SHIPPING_SALES_TAX",
    "primaryGeoId" : null,
    "taxAuthGeoId" : null,
    "originalAdjustmentId" : null,
    "secondaryGeoId" : null,
    "createdByUserLogin" : null,
    "orderAdjustmentId" : null,
    "amountAlreadyIncluded" : null,
    "lastUpdatedStamp" : null,
    "amount" : 0,
    "comments" : null,
    "recurringAmount" : null,
    "lastModifiedDate" : null,
    "sourceReferenceId" : null,
    "productPromoRuleId" : null,
    "isManual" : null,
    "productFeatureId" : null,
    "taxAuthorityRateSeqId" : null,
    "overrideGlAccountId" : null,
    "oldAmountPerQuantity" : null,
    "shipGroupSeqId" : null,
    "includeInTax" : null,
    "createdDate" : null,
    "productPromoActionSeqId" : null,
    "sourcePercentage" : null
  }, {
    "customerReferenceId" : null,
    "correspondingProductId" : null,
    "orderItemSeqId" : "_NA_",
    "orderId" : "39670",
    "includeInShipping" : null,
    "description" : null,
    "exemptAmount" : null,
    "productPromoId" : null,
    "taxAuthPartyId" : null,
    "lastModifiedByUserLogin" : null,
    "oldPercentage" : null,
    "orderAdjustmentTypeId" : "SHIPPING_SALES_TAX",
    "primaryGeoId" : null,
    "taxAuthGeoId" : null,
    "originalAdjustmentId" : null,
    "secondaryGeoId" : null,
    "createdByUserLogin" : null,
    "orderAdjustmentId" : null,
    "amountAlreadyIncluded" : null,
    "lastUpdatedStamp" : null,
    "amount" : 0,
    "comments" : null,
    "recurringAmount" : null,
    "lastModifiedDate" : null,
    "sourceReferenceId" : null,
    "productPromoRuleId" : null,
    "isManual" : null,
    "productFeatureId" : null,
    "taxAuthorityRateSeqId" : null,
    "overrideGlAccountId" : null,
    "oldAmountPerQuantity" : null,
    "shipGroupSeqId" : null,
    "includeInTax" : null,
    "createdDate" : null,
    "productPromoActionSeqId" : null,
    "sourcePercentage" : null
  }, {
    "amount" : 30,
    "customerReferenceId" : null,
    "correspondingProductId" : null,
    "orderItemSeqId" : "_NA_",
    "orderId" : "39670",
    "includeInShipping" : null,
    "description" : null,
    "exemptAmount" : null,
    "productPromoId" : null,
    "taxAuthPartyId" : null,
    "lastModifiedByUserLogin" : null,
    "oldPercentage" : null,
    "primaryGeoId" : null,
    "taxAuthGeoId" : null,
    "originalAdjustmentId" : null,
    "secondaryGeoId" : null,
    "createdByUserLogin" : null,
    "orderAdjustmentId" : null,
    "amountAlreadyIncluded" : null,
    "lastUpdatedStamp" : null,
    "comments" : null,
    "recurringAmount" : null,
    "lastModifiedDate" : null,
    "sourceReferenceId" : null,
    "productPromoRuleId" : null,
    "isManual" : null,
    "productFeatureId" : null,
    "taxAuthorityRateSeqId" : null,
    "overrideGlAccountId" : null,
    "oldAmountPerQuantity" : null,
    "shipGroupSeqId" : null,
    "includeInTax" : null,
    "createdDate" : null,
    "productPromoActionSeqId" : null,
    "sourcePercentage" : null,
    "orderAdjustmentTypeId" : "SHIPPING_CHARGES"
  } ],
  "shipments" : [ {
    "trackingNumber" : "794609246622",
    "carrierPartyId" : "FEDEX",
    "shipmentMethodTypeId" : "GROUND",
    "shipTo" : {
      "houseNumberExt" : null,
      "stateProvinceGeoId" : "NV",
      "toName" : "Walter White",
      "address2" : null,
      "postalCodeGeoId" : null,
      "houseNumber" : null,
      "geoPointId" : "36560",
      "encodedAddressKey" : null,
      "postalCodeExt" : null,
      "countryGeoId" : "USA",
      "countryGeoCode" : "US",
      "stateProvinceGeoCode" : "NV",
      "attnName" : null,
      "address1" : "3799 S Las Vegas Blvd,  ",
      "directions" : null,
      "countyGeoId" : null,
      "cityGeoId" : null,
      "city" : "Las Vegas",
      "municipalityGeoId" : null,
      "contactMechId" : "148471",
      "postalCode" : "89109"
    },
    "shipmentItems" : [ {
      "shipmentId" : "27091",
      "shipmentItemSeqId" : "00001",
      "orderId" : "39670",
      "orderItemSeqId" : "00101",
      "orderItemExternalId" : "12073761243207",
      "shipGroupSeqId" : "00003",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:50:02-05:00",
      "productId" : "136845",
      "unitPrice" : 65.97,
      "facilityId" : "15",
      "facilityExternalId" : "15",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "productId" : "136845",
        "fromDate" : "2022-05-16T01:55:59-04:00",
        "idValue" : "ABSOLUTE",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "UPCA",
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "824095530224",
        "lastUpdatedStamp" : "2021-08-12T23:38:09-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00101"
      } ]
    }, {
      "shipmentId" : "27091",
      "shipmentItemSeqId" : "00002",
      "orderId" : "39670",
      "orderItemSeqId" : "00104",
      "orderItemExternalId" : "12073761243207",
      "shipGroupSeqId" : "00003",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:50:02-05:00",
      "productId" : "136845",
      "unitPrice" : 65.97,
      "facilityId" : "15",
      "facilityExternalId" : "15",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "productId" : "136845",
        "fromDate" : "2022-05-16T01:55:59-04:00",
        "idValue" : "ABSOLUTE",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "UPCA",
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "824095530224",
        "lastUpdatedStamp" : "2021-08-12T23:38:09-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00104"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00104"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00104"
      } ]
    } ]
  }, {
    "trackingNumber" : "794609246611",
    "carrierPartyId" : "FEDEX",
    "shipmentMethodTypeId" : "GROUND",
    "shipTo" : {
      "houseNumberExt" : null,
      "stateProvinceGeoId" : "NV",
      "toName" : "Walter White",
      "address2" : null,
      "postalCodeGeoId" : null,
      "houseNumber" : null,
      "geoPointId" : "36560",
      "encodedAddressKey" : null,
      "postalCodeExt" : null,
      "countryGeoId" : "USA",
      "countryGeoCode" : "US",
      "stateProvinceGeoCode" : "NV",
      "attnName" : null,
      "address1" : "3799 S Las Vegas Blvd,  ",
      "directions" : null,
      "countyGeoId" : null,
      "cityGeoId" : null,
      "city" : "Las Vegas",
      "municipalityGeoId" : null,
      "contactMechId" : "148471",
      "postalCode" : "89109"
    },
    "shipmentItems" : [ {
      "shipmentId" : "27090",
      "shipmentItemSeqId" : "00001",
      "orderId" : "39670",
      "orderItemSeqId" : "00102",
      "orderItemExternalId" : "12073761243207",
      "shipGroupSeqId" : "00002",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:48:45-05:00",
      "productId" : "136845",
      "unitPrice" : 65.97,
      "facilityId" : "1",
      "facilityExternalId" : "1",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "productId" : "136845",
        "fromDate" : "2022-05-16T01:55:59-04:00",
        "idValue" : "ABSOLUTE",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "UPCA",
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "824095530224",
        "lastUpdatedStamp" : "2021-08-12T23:38:09-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "orderItemSeqId" : "00102",
        "sourcePercentage" : null
      } ]
    }, {
      "shipmentId" : "27090",
      "shipmentItemSeqId" : "00002",
      "orderId" : "39670",
      "orderItemSeqId" : "00103",
      "orderItemExternalId" : "12073761243207",
      "shipGroupSeqId" : "00002",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:48:45-05:00",
      "productId" : "136845",
      "unitPrice" : 65.97,
      "facilityId" : "1",
      "facilityExternalId" : "1",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "lastUpdatedStamp" : "2022-08-10T02:58:52-04:00",
        "productId" : "136845",
        "fromDate" : "2022-05-16T01:55:59-04:00",
        "idValue" : "ABSOLUTE",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "UPCA",
        "fromDate" : "2021-08-12T23:38:08-04:00",
        "productId" : "136845",
        "idValue" : "824095530224",
        "lastUpdatedStamp" : "2021-08-12T23:38:09-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00103"
      } ]
    }, {
      "shipmentId" : "27090",
      "shipmentItemSeqId" : "00003",
      "orderId" : "39670",
      "orderItemSeqId" : "00107",
      "orderItemExternalId" : "12073761210439",
      "shipGroupSeqId" : "00002",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:48:45-05:00",
      "productId" : "136842",
      "unitPrice" : 65.97,
      "facilityId" : "1",
      "facilityExternalId" : "1",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2023-01-09T07:41:36-05:00",
        "goodIdentificationTypeId" : "ERP_ID",
        "lastUpdatedStamp" : "2023-01-09T07:42:11-05:00",
        "idValue" : "ABC8765",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_ID",
        "idValue" : "39445100363847",
        "fromDate" : "2022-10-21T07:31:32-04:00",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "fromDate" : "2022-04-27T15:00:11-04:00",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "idValue" : "ABSOLUTE",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-05T08:20:20-05:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "824095530101",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "orderItemSeqId" : "00107",
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "orderItemSeqId" : "00107",
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "orderItemSeqId" : "00107",
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      } ]
    }, {
      "shipmentId" : "27090",
      "shipmentItemSeqId" : "00004",
      "orderId" : "39670",
      "orderItemSeqId" : "00108",
      "orderItemExternalId" : "12073761210439",
      "shipGroupSeqId" : "00002",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:48:45-05:00",
      "productId" : "136842",
      "unitPrice" : 65.97,
      "facilityId" : "1",
      "facilityExternalId" : "1",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2023-01-09T07:41:36-05:00",
        "goodIdentificationTypeId" : "ERP_ID",
        "lastUpdatedStamp" : "2023-01-09T07:42:11-05:00",
        "idValue" : "ABC8765",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_ID",
        "idValue" : "39445100363847",
        "fromDate" : "2022-10-21T07:31:32-04:00",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "fromDate" : "2022-04-27T15:00:11-04:00",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "idValue" : "ABSOLUTE",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-05T08:20:20-05:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "824095530101",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "orderItemSeqId" : "00108",
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "orderItemSeqId" : "00108",
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "orderItemSeqId" : "00108",
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      } ]
    } ]
  }, {
    "trackingNumber" : "794609246600",
    "carrierPartyId" : "FEDEX",
    "shipmentMethodTypeId" : "GROUND",
    "shipTo" : {
      "houseNumberExt" : null,
      "stateProvinceGeoId" : "NV",
      "toName" : "Walter White",
      "address2" : null,
      "postalCodeGeoId" : null,
      "houseNumber" : null,
      "geoPointId" : "36560",
      "encodedAddressKey" : null,
      "postalCodeExt" : null,
      "countryGeoId" : "USA",
      "countryGeoCode" : "US",
      "stateProvinceGeoCode" : "NV",
      "attnName" : null,
      "address1" : "3799 S Las Vegas Blvd,  ",
      "directions" : null,
      "countyGeoId" : null,
      "cityGeoId" : null,
      "city" : "Las Vegas",
      "municipalityGeoId" : null,
      "contactMechId" : "148471",
      "postalCode" : "89109"
    },
    "shipmentItems" : [ {
      "shipmentId" : "27092",
      "shipmentItemSeqId" : "00002",
      "orderId" : "39670",
      "orderItemSeqId" : "00105",
      "orderItemExternalId" : "12073761210439",
      "shipGroupSeqId" : "00003",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:50:02-05:00",
      "productId" : "136842",
      "unitPrice" : 65.97,
      "facilityId" : "15",
      "facilityExternalId" : "15",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2023-01-09T07:41:36-05:00",
        "goodIdentificationTypeId" : "ERP_ID",
        "lastUpdatedStamp" : "2023-01-09T07:42:11-05:00",
        "idValue" : "ABC8765",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_ID",
        "idValue" : "39445100363847",
        "fromDate" : "2022-10-21T07:31:32-04:00",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "fromDate" : "2022-04-27T15:00:11-04:00",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "idValue" : "ABSOLUTE",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-05T08:20:20-05:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "824095530101",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00105"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00105"
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null,
        "orderItemSeqId" : "00105"
      } ]
    }, {
      "shipmentId" : "27092",
      "shipmentItemSeqId" : "00001",
      "orderId" : "39670",
      "orderItemSeqId" : "00106",
      "orderItemExternalId" : "12073761210439",
      "shipGroupSeqId" : "00003",
      "itemStatusId" : "ITEM_COMPLETED",
      "itemQuantity" : 1,
      "slaShipmentMethodTypeId" : "NEXT_DAY",
      "statusDatetime" : "2023-01-30T03:50:02-05:00",
      "productId" : "136842",
      "unitPrice" : 65.97,
      "facilityId" : "15",
      "facilityExternalId" : "15",
      "facilityTypeId" : "RETAIL_STORE",
      "parentFacilityTypeId" : "PHYSICAL_STORE",
      "shippedQuantity" : 1,
      "goodIdentifications" : [ {
        "fromDate" : "2023-01-09T07:41:36-05:00",
        "goodIdentificationTypeId" : "ERP_ID",
        "lastUpdatedStamp" : "2023-01-09T07:42:11-05:00",
        "idValue" : "ABC8765",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_ID",
        "idValue" : "39445100363847",
        "fromDate" : "2022-10-21T07:31:32-04:00",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "idValue" : "ABSOLUTE",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "goodIdentificationTypeId" : "SHOPIFY_PROD_SKU",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      }, {
        "goodIdentificationTypeId" : "SKU",
        "fromDate" : "2022-04-27T15:00:11-04:00",
        "lastUpdatedStamp" : "2023-01-09T05:45:13-05:00",
        "idValue" : "ABSOLUTE",
        "productId" : "136842",
        "thruDate" : null
      }, {
        "lastUpdatedStamp" : "2023-01-05T08:20:20-05:00",
        "goodIdentificationTypeId" : "UPCA",
        "idValue" : "824095530101",
        "productId" : "136842",
        "fromDate" : "2021-08-12T23:38:06-04:00",
        "thruDate" : null
      } ],
      "itemAdjustments" : [ {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "amount" : -12.5,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "lastUpdatedStamp" : null,
        "comments" : null,
        "orderItemSeqId" : "00106",
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "orderAdjustmentTypeId" : "EXT_PROMO_ADJUSTMENT",
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "orderItemSeqId" : "00106",
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      }, {
        "customerReferenceId" : null,
        "correspondingProductId" : null,
        "orderId" : "39670",
        "includeInShipping" : null,
        "description" : null,
        "exemptAmount" : null,
        "productPromoId" : null,
        "taxAuthPartyId" : null,
        "lastModifiedByUserLogin" : null,
        "oldPercentage" : null,
        "primaryGeoId" : null,
        "taxAuthGeoId" : null,
        "originalAdjustmentId" : null,
        "secondaryGeoId" : null,
        "createdByUserLogin" : null,
        "orderAdjustmentId" : null,
        "amountAlreadyIncluded" : null,
        "orderAdjustmentTypeId" : "SALES_TAX",
        "lastUpdatedStamp" : null,
        "amount" : 0,
        "comments" : null,
        "orderItemSeqId" : "00106",
        "recurringAmount" : null,
        "lastModifiedDate" : null,
        "sourceReferenceId" : null,
        "productPromoRuleId" : null,
        "isManual" : null,
        "productFeatureId" : null,
        "taxAuthorityRateSeqId" : null,
        "overrideGlAccountId" : null,
        "oldAmountPerQuantity" : null,
        "shipGroupSeqId" : null,
        "includeInTax" : null,
        "createdDate" : null,
        "productPromoActionSeqId" : null,
        "sourcePercentage" : null
      } ]
    } ]
  } ]
} ]
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to diff
Link to changelog
Link to Diff
Link to Changelog