Skip to main content

Historical order import API (v0)

Download OpenAPI specification:Download

Past orders which have already been fulfilled, outside or before implementation on NewStore are called Historical orders.

Following are the few APIs that can be used to import past orders while on-boarding tenants or setting up a new fulfillment location.

Import historical orders

Import historical orders

Use this API to import complete hisorical orders into NewStore.

This API can only be called 500 times in a minute and each request can handle not more than 250 orders.

Note: The imported historical orders are placed in a queue that is shared between all NewStore tenants and processed based on the timestamp when they entered the queue. Depending on the number of historical orders imported it can take some time to process the queue. The imported historical orders are processed from the queue with a rate of upto 250 orders per minute.

The product_ids inside shipments -> items are currently not validated against the catalog and the historical order import will work even if the product does not exist in the catalog. Please make sure to have your products imported before starting the import.

Authorizations:
newStoreAccessToken
Request Body schema: application/json
required
Array of objects <= 250 items
Array (<= 250 items)
external_id
required
string [ 1 .. 64 ] characters
placed_at
required
string <date-time>

Date representation of when the order was placed, containing date, time and timezone as defined by https://tools.ietf.org/html/rfc3339 (ISO 8601).

store_id
string <= 256 characters

ID of the store where this order was placed.

channel_type
required
string
Enum: "web" "mobile" "store"
channel_name
required
string [ 1 .. 64 ] characters

A string used to distinguish between various sources of orders.

currency
required
string
Enum: "AED" "AFN" "ALL" "AMD" "ANG" "AOA" "ARS" "AUD" "AWG" "AZN" "BAM" "BBD" "BDT" "BGN" "BHD" "BIF" "BMD" "BND" "BOB" "BOV" "BRL" "BSD" "BTN" "BWP" "BYN" "BZD" "CAD" "CDF" "CHE" "CHF" "CHW" "CLF" "CLP" "CNY" "COP" "COU" "CRC" "CUC" "CUP" "CVE" "CZK" "DJF" "DKK" "DOP" "DZD" "EGP" "ERN" "ETB" "EUR" "FJD" "FKP" "GBP" "GEL" "GHS" "GIP" "GMD" "GNF" "GTQ" "GYD" "HKD" "HNL" "HRK" "HTG" "HUF" "IDR" "ILS" "INR" "IQD" "IRR" "ISK" "JMD" "JOD" "JPY" "KES" "KGS" "KHR" "KMF" "KPW" "KRW" "KWD" "KYD" "KZT" "LAK" "LBP" "LKR" "LRD" "LSL" "LYD" "MAD" "MDL" "MGA" "MKD" "MMK" "MNT" "MOP" "MRU" "MUR" "MVR" "MWK" "MXN" "MXV" "MYR" "MZN" "NAD" "NGN" "NIO" "NOK" "NPR" "NZD" "OMR" "PAB" "PEN" "PGK" "PHP" "PKR" "PLN" "PYG" "QAR" "RON" "RSD" "RUB" "RWF" "SAR" "SBD" "SCR" "SDG" "SEK" "SGD" "SHP" "SLL" "SOS" "SRD" "SSP" "STN" "SVC" "SYP" "SZL" "THB" "TJS" "TMT" "TND" "TOP" "TRY" "TTD" "TWD" "TZS" "UAH" "UGX" "USD" "USN" "UYI" "UYU" "UYW" "UZS" "VES" "VND" "VUV" "WST" "XAF" "XAG" "XAU" "XBA" "XBB" "XBC" "XBD" "XCD" "XDR" "XOF" "XPD" "XPF" "XPT" "XSU" "XTS" "XUA" "XXX" "YER" "ZAR" "ZMW" "ZWL"

The currency for all the prices contained within this payload.

customer_email
required
string <email> [ 1 .. 64 ] characters
shop_locale
required
string [ 1 .. 128 ] characters

The locale of the customer used for the shop, in RFC 5646.

shop
required
string [ 1 .. 128 ] characters

The shop containing the items of the order.

required
object
required
object

The name and phone number provided in the billing address will be used to create a customer profile for this order.

required
Array of objects <= 40 items
price_method
required
string
Enum: "tax_included" "tax_excluded"

Specifies if all items and shipping prices include tax or not.

required
Array of objects
Array of objects <= 100 items [ items <= 2 properties ]

Extra information about the order, which is propagated through NewStore applications.

Responses

Request samples

Content type
application/json
{
  • "orders": [
    ]
}

Response samples

Content type
application/json
Example
{
  • "status": "success"
}

Fetch historical order status

Fetch historical order status

Use this API to fetch the status of an order that has been imported using the Import historical orders api.

Authorizations:
newStoreAccessToken
query Parameters
order_id
string

The external id of the imported order

Responses

Response samples

Content type
application/json
{
  • "status": "pending"
}