- 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
Product Update Push
POST
https://s.boxme.asia/webhook-url
Last modified:2024-05-09 01:52:33
Request
Header Params
Content-Type
string
optional
Example:
application/json
Authorization
string
optional
Example:
{{WEBHOOK_TOKEN}}
Body Params application/json
country
string
required
seller_id
integer
required
event_type
string
required
data
object
required
bsin
string
required
seller_sku
string
required
product_name
string
required
change_values
array [object {3}]
required
update_time
integer
required
request_id
string
required
timestamp
integer
required
Example
{
"country": "VN",
"seller_id": 331529,
"event_type": "product.update",
"data": {
"bsin": "BSN33152982996791",
"seller_sku": "TEST-0005",
"product_name": "TEST-0005",
"change_values": [
{
"name": "weight",
"old": 500,
"new": 750
},
{
"name": "approved",
"old": false,
"new": true
},
{
"name": "volume",
"old": "9x13x15",
"new": "10x13x12"
}
],
"update_time": 1696301698
},
"request_id": "65740507a22fa65d9874d4ed",
"timestamp": 1702102279
}
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://s.boxme.asia/webhook-url' \
--header 'Authorization: {{WEBHOOK_TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"country": "VN",
"seller_id": 331529,
"event_type": "product.update",
"data": {
"bsin": "BSN33152982996791",
"seller_sku": "TEST-0005",
"product_name": "TEST-0005",
"change_values": [
{
"name": "weight",
"old": 500,
"new": 750
},
{
"name": "approved",
"old": false,
"new": true
},
{
"name": "volume",
"old": "9x13x15",
"new": "10x13x12"
}
],
"update_time": 1696301698
},
"request_id": "65740507a22fa65d9874d4ed",
"timestamp": 1702102279
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-05-09 01:52:33