- Getting Started
- Extension
- Dashboard
- Module
- Report
- Total
- Integration
- Channel
- Extension
- Profile
- Inventory
- Addition
- Brand
- Category
- Deduction
- Flow
- Item
- Location
- Purchase Order
- Reservation
- Stock Take Job
- Supplier
- Transfer Job
- Transfer
- Sale
- Credit Note
- Customer Group
- Customer
- Order
- Setting
sale/order/add
POST
/sale/order/add
Request
Body Params application/json
domain
string
required
api_key
string
required
auth_timestamp
integer
required
auth_signature
string
required
imported_order_id
string
required
channel_id
integer
required
customer_id
integer
required
firstname
string
required
lastname
string
required
company
string
required
email
string
required
telephone
string
required
telephone_2
string
required
date_ordered
string
required
address_1
string
required
address_2
string
required
city
string
required
postcode
string
required
country
string
required
zone
string
required
shipping_method
string
required
shipping_date
string
required
shipping_tracking
string
required
currency
string
required
currency_value
number
required
payment_method
integer
required
total
number
required
comment
string
required
products
array [object {10}]
required
item_id
integer
required
name
string
required
model
string
required
sku
string
required
quantity
integer
required
price
number
required
cost
number
optional
discount
number
required
discount_total
number
required
totals
array [object {4}]
optional
totals
array [object {4}]
required
name
string
required
code
string
required
price
number
required
sort_order
integer
required
split_payment
integer
required
payments
array [object {2}]
optional
payment_method
string
required
total
number
required
order_status_id
integer
required
Example
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"imported_order_id": "string",
"channel_id": 0,
"customer_id": 0,
"firstname": "string",
"lastname": "string",
"company": "string",
"email": "string",
"telephone": "string",
"telephone_2": "string",
"date_ordered": "string",
"address_1": "string",
"address_2": "string",
"city": "string",
"postcode": "string",
"country": "string",
"zone": "string",
"shipping_method": "string",
"shipping_date": "string",
"shipping_tracking": "string",
"currency": "string",
"currency_value": 0,
"payment_method": 0,
"total": 0,
"comment": "string",
"products": [
{
"item_id": 0,
"name": "string",
"model": "string",
"sku": "string",
"quantity": 0,
"price": 0,
"cost": 0,
"discount": 0,
"discount_total": 0,
"totals": [
{
"name": "string",
"code": "string",
"price": 0,
"sort_order": 0
}
]
}
],
"totals": [
{
"name": "string",
"code": "string",
"price": 0,
"sort_order": 0
}
],
"split_payment": 0,
"payments": [
{
"payment_method": "string",
"total": 0
}
],
"order_status_id": 0
}
Responses
🟢200Success
application/json
Body
error
array[string]
optional
success
boolean
optional
order
object
optional
order_id
integer
required
imported_order_id
string
required
location_id
integer
required
channel_id
integer
required
channel
string
required
payment_method
string
required
customer_id
integer
required
firstname
string
required
lastname
string
required
email
string
required
name
string
required
company
string
required
telephone
string
required
telephone_2
string
required
address_1
string
required
address_2
string
required
city
string
required
postcode
string
required
country
string
required
zone
string
required
order_status
string
required
order_status_id
integer
required
shipping_label_status_id
integer
required
order_blacklist_id
integer
required
currency
string
required
currency_value
number
required
total
number
required
cost
number
optional
shipping_method
string
required
shipping_tracking
string
required
shipping_date
string
required
date_ordered
string
required
date_added
string
required
date_modified
string
required
comment
string
required
locked
boolean
required
weight
number
required
products
array [object {17}]
required
payments
array [object {2}]
required
totals
array [object {4}]
required
payouts
array [object {2}]
required
data
array [object {2}]
required
Example
{
"error": [
"string"
],
"success": true,
"order": {
"order_id": 0,
"imported_order_id": "string",
"location_id": 0,
"channel_id": 0,
"channel": "string",
"payment_method": "string",
"customer_id": 0,
"firstname": "string",
"lastname": "string",
"email": "string",
"name": "string",
"company": "string",
"telephone": "string",
"telephone_2": "string",
"address_1": "string",
"address_2": "string",
"city": "string",
"postcode": "string",
"country": "string",
"zone": "string",
"order_status": "string",
"order_status_id": 0,
"shipping_label_status_id": 0,
"order_blacklist_id": 0,
"currency": "string",
"currency_value": 0,
"total": 0,
"cost": 0,
"shipping_method": "string",
"shipping_tracking": "string",
"shipping_date": "string",
"date_ordered": "string",
"date_added": "string",
"date_modified": "string",
"comment": "string",
"locked": true,
"weight": 0,
"products": [
{
"order_product_id": 0,
"imported_order_product_id": "string",
"item_id": 0,
"thumb": "string",
"name": "string",
"model": "string",
"sku": "string",
"quantity": 0,
"price": 0,
"discount": 0,
"discount_platform": 0,
"total": 0,
"cost": 0,
"order_status": "string",
"order_status_id": 0,
"weight": 0,
"deducted": true
}
],
"payments": [
{
"payment_method": "string",
"total": 0
}
],
"totals": [
{
"code": "string",
"name": "string",
"price": 0,
"sort_order": 0
}
],
"payouts": [
{
"name": "string",
"amount": 0
}
],
"data": [
{
"name": "string",
"value": "string"
}
]
}
}
Modified at 2024-11-04 12:48:55