- Overview
- Getting Started
- Common Errors
- API
- Config
- Product
- Product Inventory
- Order
- Shipment
- Shipment Inbound
- Courier
- Address Directory
- Status
- Webhooks
Create single inventory product
Developing
POST
/api/v1/public/products/inventory/create
Last modified:2024-08-09 10:46:48
Request
Header Params
Authorization
string
optional
Default:
6pGkII/faXeTxkNR1wOXRKZniSG25HgtPoDr3dLcuAcegBUKinCDkkdpxeSULdtPE0I7P8nM7dWTPRUyhzgtvQ==
Body Params application/json
sku
string
required
name
string
required
weight
integer
required
package_length
integer
required
package_width
integer
required
package_height
integer
required
product_brand
null
required
product_category
integer
required
cost
integer
required
sale_price
integer
required
is_serial_number
integer
required
is_batch_control
integer
required
is_bubble_wrap
integer
required
is_kraft_paper
integer
required
is_fragile
integer
required
min_shelf_life_inbound
integer
required
min_shelf_life_outbound
integer
required
material
string
required
product_type
string
required
storage_method
string
required
outbound_strategy
string
required
unit
integer
required
info
object
required
description
string
required
images
array [object {1}]
required
image_url
string
optional
documents
array[string]
required
barcode_list
array [object {1}]
required
barcode
string
optional
config
object
required
create_inventory_stock
boolean
required
Example
{
"sku": "BTH",
"name": null,
"weight": null,
"package_length": null,
"package_width": null,
"package_height": null,
"product_brand": null,
"product_category": null,
"cost": null,
"sale_price": null,
"is_serial_number": null,
"is_batch_control": null,
"is_bubble_wrap": null,
"is_kraft_paper": null,
"is_fragile": null,
"min_shelf_life_inbound": null,
"min_shelf_life_outbound": null,
"material": null,
"product_type": null,
"storage_method": null,
"outbound_strategy": null,
"unit": null,
"info": {
"description": null
},
"images": [
{
"image_url": null
}
],
"documents": [],
"barcode_list": [
{
"barcode": null
}
],
"config": {
"create_inventory_stock": null
}
}
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/products/inventory/create' \
--header 'Authorization: 6pGkII/faXeTxkNR1wOXRKZniSG25HgtPoDr3dLcuAcegBUKinCDkkdpxeSULdtPE0I7P8nM7dWTPRUyhzgtvQ==' \
--header 'Content-Type: application/json' \
--data-raw '{
"sku": "BTH",
"name": null,
"weight": null,
"package_length": null,
"package_width": null,
"package_height": null,
"product_brand": null,
"product_category": null,
"cost": null,
"sale_price": null,
"is_serial_number": null,
"is_batch_control": null,
"is_bubble_wrap": null,
"is_kraft_paper": null,
"is_fragile": null,
"min_shelf_life_inbound": null,
"min_shelf_life_outbound": null,
"material": null,
"product_type": null,
"storage_method": null,
"outbound_strategy": null,
"unit": null,
"info": {
"description": null
},
"images": [
{
"image_url": null
}
],
"documents": [],
"barcode_list": [
{
"barcode": null
}
],
"config": {
"create_inventory_stock": null
}
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
🟠400Bad Request
Modified at 2024-08-09 10:46:48