- Overview
- Getting Started
- Common Errors
- API
- Config
- Product
- Product Inventory
- Order
- Shipment
- Shipment Inbound
- Courier
- Address Directory
- Order Return
- Status
- Webhooks
Create order B2B
Developing
POST
/api/v1/public/orders/create
Last modified:2025-04-04 10:42:16
It supports conditional logic such as using customer_id to auto-fill receiver info, or manual input if customer_id is not provided.
Request
Header Params
Authorization
string
optional
Default:
6pGkII/faXeTxkNR1wOXRKZniSG25HgtPoDr3dLcuAcegBUKinCDkkdpxeSULdtPE0I7P8nM7dWTPRUyhzgtvQ==
Body Params application/json
store_id
string
required
pickup_id
string
required
receiver
object
required
If customer_id is provided: Other fields such as fullname, phone, address, zipcode, province_name, district_name, and ward_name are optional.
customer_id
integer
optional
country
string
optional
fullname
string
optional
phone
string
optional
address
string
optional
zipcode
string
optional
province_name
string
optional
district_name
string
optional
ward_name
string
optional
payments
array [object {3}]
required
status
integer
required
100 Not paid
110 Payment in process
120 Awaiting payment
150 Partially paid
200 Paid
250 Awaiting refund
300 Refunded
310 Partially refunded
500 Payment cancelled
550 COD collection cancelled
600 Overdue
method
integer
required
1 COD (Cash on Delivery)
2 Bank Transfer
3 Visa/Master/Amex Card
4 Cash
5 QR Code
6 Online Banking
7 Installment Payment
amount
integer
required
fees
array [object {2}]
optional
code
string
optional
If the original shipping fee is 30,000 VND and there's a platform discount of 10,000 VND, then:
→ buyer_shipping_fee = 20,000
If the platform gives:
→ total_platform_discount = 25,000
amount
integer
optional
items
array [object {4}]
required
sku
string
required
sale_price
integer
required
discounted_price
integer
required
quantity
integer
required
config
object
required
order_type
string
required
approve
integer
required
preview
integer
required
use_insurance
integer
required
fulfill_now
integer
required
Type: integer
delivery_service
string
required
additional_services
string | null
optional
CIG: Package inspection upon pickup
OWH: Delivery outside working hours
IGD: Package inspection upon delivery
tax_paid_by
string
required
fee_paid_by
string
required
courier_integration_id
integer
required
courier_id
integer
required
extra_info
object
required
note
string | null
optional
packaging_note
string | null
optional
order_number
string
required
estimated_departure_time
integer | null
optional
documents
array [object {4}]
optional
name
string
optional
quantity
integer
optional
doc_type
string
optional
1: Purchase order (A formal document issued to request a purchase)
2: Invoice (A billing document for the transaction.)
99: Other (Any other document type that does not fall into the predefined categories.)
url
string
optional
Example
{
"store_id": "{{store_id_b2b}}",
"pickup_id": "{{pickup_id}}",
"receiver": {
"customer_id": null,
"country": "VN",
"fullname": "{{$person.fullName(locale='vi')}}",
"phone": "{{$phone.number(locale='vi')}}",
"address": "Số 9 Trà Khúc",
"zipcode": "77000",
"province_name": "TP. Hồ Chí Minh",
"district_name": "Tân Bình",
"ward_name": "Phường 2"
},
"payments": [
{
"status": 100,
"method": 1,
"amount": 0
}
],
"discounts": [],
"fees": [
{
"code": "buyer_shipping_fee",
"amount": 31000
}
],
"items": [
{
"sku": "250204067",
"sale_price": 30700000,
"discounted_price": 30700000,
"quantity": 10
}
],
"config": {
"order_type": "b2b",
"approve": 1,
"preview": 1,
"use_insurance": 0,
"fulfill_now": 0,
"delivery_service": "SOF_STD",
"additional_services": "CIG,OWH",
"tax_paid_by": "sender",
"fee_paid_by": "sender",
"courier_integration_id": 172,
"courier_id": 16
},
"extra_info": {
"note": "Giao tới nhà có cổng màu tím trước sân cây hoa mai",
"packaging_note": "Kiểm tra hàng trong sản phẩm còn nguyên vẹn trước khi đóng gói",
"order_number": "{{$string.numeric(length=10,locale='vi')}}",
"estimated_departure_time": {{$date.timestamp|addDays(3)}}
},
"documents": [
{
"name": "{{$food.dish}}",
"quantity": 2,
"doc_type": "3",
"url": "google.com"
}
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://stg-oms.nandh.vn/api/v1/public/orders/create' \
--header 'Authorization: 6pGkII/faXeTxkNR1wOXRKZniSG25HgtPoDr3dLcuAcegBUKinCDkkdpxeSULdtPE0I7P8nM7dWTPRUyhzgtvQ==' \
--header 'Content-Type: application/json' \
--data-raw '{
"store_id": "{{store_id_b2b}}",
"pickup_id": "{{pickup_id}}",
"receiver": {
"customer_id": null,
"country": "VN",
"fullname": "{{$person.fullName(locale='\''vi'\'')}}",
"phone": "{{$phone.number(locale='\''vi'\'')}}",
"address": "Số 9 Trà Khúc",
"zipcode": "77000",
"province_name": "TP. Hồ Chí Minh",
"district_name": "Tân Bình",
"ward_name": "Phường 2"
},
"payments": [
{
"status": 100,
"method": 1,
"amount": 0
}
],
"discounts": [],
"fees": [
{
"code": "buyer_shipping_fee",
"amount": 31000
}
],
"items": [
{
"sku": "250204067",
"sale_price": 30700000,
"discounted_price": 30700000,
"quantity": 10
}
],
"config": {
"order_type": "b2b",
"approve": 1,
"preview": 1,
"use_insurance": 0,
"fulfill_now": 0,
"delivery_service": "SOF_STD",
"additional_services": "CIG,OWH",
"tax_paid_by": "sender",
"fee_paid_by": "sender",
"courier_integration_id": 172,
"courier_id": 16
},
"extra_info": {
"note": "Giao tới nhà có cổng màu tím trước sân cây hoa mai",
"packaging_note": "Kiểm tra hàng trong sản phẩm còn nguyên vẹn trước khi đóng gói",
"order_number": "{{$string.numeric(length=10,locale='\''vi'\'')}}",
"estimated_departure_time": {{$date.timestamp|addDays(3)}}
},
"documents": [
{
"name": "{{$food.dish}}",
"quantity": 2,
"doc_type": "3",
"url": "google.com"
}
]
}'
Responses
🟢200OK
application/json
Body
status_code
integer
optional
data
object
optional
order_id
integer
optional
tracking_code
string
optional
error
boolean
optional
error_code
null
optional
log_id
null
optional
messages
string
optional
total
integer
optional
Example
{
"status_code": 0,
"data": {
"order_id": 0,
"tracking_code": "string"
},
"error": true,
"error_code": null,
"log_id": null,
"messages": "string",
"total": 0
}
Modified at 2025-04-04 10:42:16