Import flow - without product availability
Call the GET product API for all the SKUs of an order.
Headers:
Key | Value |
---|---|
Authorization | Bearer <token> |
proxyHost | <accountSlug> |
Response:
{
"tshirt1": {
"availableOn": [
"CH1444",
"CH1459"
],
"hsnCode": "90000",
"dimensionHeight": 1.0,
"dimensionLength": 10.0,
"dimensionUnit": "cm",
"description": "tshirt1",
"weight": 350.0,
"mrp": 999.0,
"dimensionWidth": 19.0,
"type": "BASE",
"verticalName": "Apparels",
"imageUrl": "https://cdn.filestackcontent.com/I6TcufwdSIGQ0K1UnVwt",
"accountSlug": "testing_brand_party",
"sku": "tshirt1",
"esin": "T1VUP3H8EN1",
"brand": "DummyBrand",
"additionalNames": {
"others": [
"TSHIRT1"
]
},
"properties": [
{
"label": "shopify_handle_742",
"internalName": "shopify_handle_742",
"value": [
"tshirt1"
]
},
{
"label": "inventory_item_id_742",
"internalName": "inventory_item_id_742",
"value": [
"44697252692162"
]
},
{
"label": "inventory_item_id_715",
"internalName": "inventory_item_id_715",
"value": [
"44697252692162"
]
},
{
"label": "shopify_handle_715",
"internalName": "shopify_handle_715",
"value": [
"tshirt1"
]
}
],
"status": "ACTIVE",
"weightUnit": "g"
},
"tshirt2": {
"availableOn": [
"CH1444",
"CH1459"
],
"hsnCode": "199",
"dimensionHeight": 33.0,
"dimensionLength": 23.0,
"dimensionUnit": "cm",
"description": "tshirt2",
"weight": 239.0,
"mrp": 900.0,
"dimensionWidth": 11.0,
"type": "BASE",
"verticalName": "Apparels",
"imageUrl": "https://cdn.filestackcontent.com/0z0BYb7hQmKX4m8CA5yF",
"accountSlug": "testing_brand_party",
"sku": "tshirt2",
"esin": "T2EHC3H8EN2",
"brand": "DummyBrand",
"additionalNames": {
"others": [
"TSHIRT2"
]
},
"properties": [
{
"label": "shopify_handle_742",
"internalName": "shopify_handle_742",
"value": [
"tshirt2"
]
},
{
"label": "inventory_item_id_742",
"internalName": "inventory_item_id_742",
"value": [
"44697256231106"
]
},
{
"label": "inventory_item_id_715",
"internalName": "inventory_item_id_715",
"value": [
"44697256231106"
]
},
{
"label": "shopify_handle_715",
"internalName": "shopify_handle_715",
"value": [
"tshirt2"
]
}
],
"status": "ACTIVE",
"weightUnit": "g"
}
}
2. After getting a successful response from the GET product details API, Fetch MRP, SKU and ESIN value from the response and call the create order API.
Call the WMS create order V2 API to create the order in Eshopbox.
Map SKU value received from GET product API to itemId and ESIN value to SKU in request of create order API.
Key mapping:
WMS Create Order Keys | Order Sheet Keys |
|
|
|
|
|
|
|
|
| “STD” |
|
|
| If orderSheet.PaymentMethod == “COD“?1:0 |
| orderSheet.PaymentMethod |
|
|
| true |
|
|
| 0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| orderSheet.Quantity |
| SKU from response of Product API |
| orderSheet.title /from response of product API |
| MRP+ |
| orderSheet.otherCharges |
| customerPrice(MRP)*quantites - (sellingPrice) (inculsive of quantities) |
| (orderSheet.sellingPrice - discount) |
| 0 |
| orderSheet.GiftMessage |
|
|
| orderSheet.GiftWrap == “YES” ? 1:0 |
| orderSheet.InvoiceNumber |
items[].isVirtualKit | “0” or “1“ from response product API (1 states that product is a virtual kit) |
items[].sku | ESIN from response of product API |
| sum of all orderSheet.ShippingCharges |
| sum of all lineItemTotal |
| subTotal + shipChargeAmount + otherCharges |
suggestedCourierCode | Forward shipping provider |
suggestedTrackingNumber | Forward tracking number |
URL : https://{{workspace}}.eshopbox.com/api/v2/order
Headers:
Header name | Value |
---|---|
Authorization | Bearer <Token> |
Content-Type | application/json |
Sample request body:
{
"vendorOrderNumber": "Test-04",
"balanceDue": 0,
"externalChannelID": "CH2065",
"orderSiteID": "MAGENTO2",
"expectedShipDate": "2022-09-15 11:13:00",
"customerOrderNumber": "Test-04",
"orderTotal": 1119.60,
"paymentType": "Prepaid",
"isCOD": "0",
"subtotal": 1119.60,
"shipMethod": "STD",
"shippingAddress": {
"city": "KOLKATA",
"countryCode": "IN",
"postalCode": "700063",
"addressLine1": "TEST",
"addressLine2": "",
"state": "WB",
"countryName": "IN",
"contactPhone": "8802064263",
"customerName": "TEST",
"email": ""
},
"thirdPartyShipping": true,
"billingAddress": {
"city": "KOLKATA",
"countryCode": "IN",
"postalCode": "700063",
"addressLine1": "TEST",
"addressLine2": "",
"state": "WB",
"countryName": "IN",
"contactPhone": "8802064263",
"customerName": "TEST",
"email": ""
},
"taxAmount": 0,
"orderDate": "2022-09-13 17:08:00",
"items": [
{
"productImageUrl": "",
"itemID": "1059692",
"sku": "T1VUP3H8EN1",
"quantity": 1,
"customerOrderItemID": "1",
"lineItemSequenceNumber": "1",
"lineItemTotal": 1184.47,
"productUrl": "",
"customerPrice": 1184.47,
"externalWarehouseID": "Eshopbox_Mumbai",
"productName": "Spaces Orthopedic Mattress"
},
{
"productImageUrl": null,
"itemID": "1052739",
"sku": "T2EHC3H8EN2",
"quantity": 1,
"customerOrderItemID": "1",
"lineItemSequenceNumber": "1",
"lineItemTotal": 1184.47,
"productUrl": null,
"customerPrice": 1184.47,
"externalWarehouseID": "Eshopbox_Mumbai",
"productName": "SPACES BONICA 100% COTTON Single Bedsheet Air Purifying Anti-bacterial Soft Feel Skin Safe (FLORAL,"
}
],
"shipChargeAmount": 0.0
}'