Create an Order
create order api
create order
POST
https://wms.eshopbox.com/api/order
This endpoint allows you to create order
Headers
Authentication
string
Bearer Token to grant access to the api
Request Body
externalChannelID
string
Sales channel name of client
Yes
customerOrderNumber
string
Unique number against each sales channel
Yes
shipMethod
string
Shipping method
No
orderDate
string
Order created date time eg: 2020-03-13 00:00:00
No
expectedShipDate
string
expected date on which order should be shipped from facility eg: 2020-03-13 00:00:00
No
promiseDeliveryDate
string
Delivery date on which order should be delivered eg: 2020-03-13 00:00:00
No
isCOD
string
1 if order is COD, 0 if order is prepaid
Yes
paymentType
string
Payment method of order e.g : COD, credit card etc
Yes
taxAmount
number
Tax amount of order (if order Total is inclusive of tax then pass 0.00)
Yes
shipChargeAmount
number
Total shipping charge on order
No
subtotal
number
Total sum of all lineItemTotal
Yes
orderTotal
number
Invoice total of order
yes
balanceDue
number
Amount the customer has to pay (0 in case of prepaid order)
Yes
thirdPartyShipping
boolean
true= if shipping is not managed by Eshopbox,false = if shipping is arranged by Eshopbox
Yes
shippingAddress
object
Shipping address object
Yes
shippingAddress.customerName
string
Shipping address customer name
Yes
shippingAddress.addressLine1
string
First Line of shipping address
yes
shippingAddress.addressLine2
string
Second line of shipping address
No
shippingAddress.city
string
Shipping city
No
shippingAddress.state
string
Shipping state
No
shippingAddress.postalCode
string
Shipping postal code
Yes
shippingAddress.countryCode
string
Shipping country code
No
shippingAddress.countryName
string
Shipping country name
No
shippingAddress.contactPhone
string
Shipping address contact number
Yes
shippingAddress.email
string
Shipping address email Id
Yes
billingAddress
object
Billing address object
Yes
billingAddress.customerName
string
Billing name of customer
Yes
billingAddress.addressLine1
string
First line of billing address
Yes
billingAddress.addressLine2
string
Second line of billing address
No
billingAddress.city
string
Billing city
No
billingAddress.state
string
Billing state
No
billingAddress.postalCode
string
Billing postal code
Yes
billingAddress.countryCode
string
Billing country code
No
billingAddress.countryName
string
Billing country name
No
billingAddress.contactPhone
string
Billing person contact number
Yes
billingAddress.email
string
Billing person email Id
Yes
items
array
The order items object
Yes
items.lineItemSequenceNumber
number
Unique id of a item in client system
No
items.itemID
string
product availability identifier on a channel
yes
items.productName
string
product name
Yes
items.quantity
number
quantity of product
yes
items.customerPrice
number
Unit Price of item
yes
items.discount
number
discount on item
yes
items.lineItemTotal
number
total price of item
yes
items.productUrl
string
product url of item
yes
Last updated