- Overview
- Getting Started
- Authentication
- Q&A
- Common Errors
- API Call Flow
- Instant Order Flow
- Boxme's RTO and RPO
- Changelog
- API References
- Location
- Pickup
- Product
- Shipment (ASN)
- Customer
- Orders
- Order API Overview
- Get Shipping Option (Fulfillment)
- Get Shipping Option (Dropship)
- Create B2C Order
- Create Delivery Order
- Create B2B Order
- Update Document
- Request Cancel Delivery Order
- Cancel Order
- Get Order Detail
- Get Order List
- Get Courier List
- Get Courier Service
- Get Packed Items
- Order Pack
- Get B2B Pickup TimeSlot
- Returns
- Finance (Dev)
- Location
- Webhooks
Update Product
PUT
https://s.boxme.asia/api/v2.1/sellers/products/update/{bsin}/
Last modified:2024-07-05 04:46:37
If the product has been approved by Boxme, you can only update some basic information, and the product may be re-approved by the operations team. New information will only be available when the operations team re-approves your product.
Request
Path Params
bsin
string
required
Example:
BSN33152982758216
Header Params
Content-Type
string
optional
Example:
application/json
Authorization
string
optional
Example:
Token {{API_TOKEN}}
Body Params application/json
name
string
optional
seller_sku
string
optional
barcode_manufacturer
string
optional
category_id
integer
optional
brand
string
optional
description
string
optional
price
integer
optional
sale_price
integer
optional
wholesale_price
integer
optional
is_digital
boolean
optional
Default:
false
min_quantity
integer
optional
warehouse_condition
integer
optional
1.
pack_with_bubble
boolean
optional
Default:
false
pack_material
integer
optional
weight
integer
optional
volume
string
optional
images
array[string]
optional
manage_by_serial_number
boolean
optional
Default:
false
managed_by_gs1
boolean
optional
Default:
false
require_expire
boolean
optional
Default:
false
outbound_strategy
string
optional
shelf_life
integer
optional
expiry_threshold
integer
optional
min_inbound_shelf_life
integer | null
optional
is_fragile
boolean
optional
Default:
false
use_shredded_paper
boolean
optional
Default:
false
batch_control
boolean
optional
Default:
false
uom
string
optional
Default:
PC
Examples:
PCSETPAIRPAC
protective_packaging_inbound
boolean
optional
Default:
false
allow_breakdown
boolean
optional
Example
{
"seller_sku": "SKU012132",
"category_id": 1,
"brand": "No Band",
"price": 100000,
"sale_price": 120000,
"wholesale_price": 80000
}
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 PUT 'https://s.boxme.asia/api/v2.1/sellers/products/update/BSN33152982758216/' \
--header 'Authorization: Token {{API_TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"seller_sku":"SKU012132",
"category_id": 1,
"brand": "No Band",
"price": 100000,
"sale_price": 120000,
"wholesale_price": 80000
}'
Responses
🟢200Success
application/json
Body
data
object
required
bsin
string
required
name
string
required
seller_sku
string
required
barcode_manufacturer
string
required
category_id
integer
required
brand
string
required
description
string
required
price
integer
required
sale_price
integer
required
wholesale_price
integer
required
is_digital
boolean
required
min_quantity
integer
required
warehouse_condition
integer
required
pack_with_bubble
boolean
required
pack_material
integer
required
weight
integer
required
volume
string
required
images
array[string]
required
manage_by_serial_number
boolean
required
managed_by_gs1
boolean
required
require_expire
boolean
required
outbound_strategy
string
required
shelf_life
integer
required
expiry_threshold
integer
required
min_inbound_shelf_life
integer
required
is_fragile
boolean
required
use_shredded_paper
boolean
required
batch_control
boolean
required
uom
string
required
protective_packaging_inbound
boolean
required
allow_breakdown
boolean
required
active
boolean
required
approve
boolean
required
error
boolean
required
error_code
string
required
messages
string
required
request_id
string
required
Example
{
"data": {
"bsin": "BSN33152982758216",
"name": "Sản Phẩm 01",
"seller_sku": "SP00012001",
"barcode_manufacturer": "WH23454808",
"category_id": 3,
"brand": "Test Brand",
"description": "Enter when there is a QC request for the product before warehouse entry.",
"sale_price": 1200000,
"price": 1000000,
"wholesale_price": 0,
"is_digital": false,
"min_quantity": 1,
"warehouse_condition": 1,
"pack_with_bubble": false,
"pack_material": 2,
"weight": 3000,
"volume": "27x36x11",
"images": [],
"manage_by_serial_number": false,
"managed_by_gs1": false,
"require_expire": true,
"outbound_strategy": "FEFO",
"shelf_life": 12,
"expiry_threshold": 3,
"min_inbound_shelf_life": 6,
"is_fragile": true,
"use_shredded_paper": true,
"batch_control": false,
"uom": "PC",
"protective_packaging_inbound": false,
"allow_breakdown": true,
"active": true,
"approve": true
},
"error": false,
"error_code": "",
"messages": "",
"request_id": ""
}
Modified at 2024-07-05 04:46:37