Product Edit Notification Data Schema
There is one type of product edit notification that contains data received when there is a product edited.
The schemas are as follows:
Product Edit
This notification will be trigger when using Edit Product V2.0.
Field | Type | Description |
---|---|---|
product_id | Integer | Product unique identifier |
upload_id | Integer | Upload id of the product to check Notification |
shop_id | Integer | Shop unique identifier |
user_id | Integer | User unique identifier |
fs_id | Integer | Fulfillment service unique identifier |
Success Response Examples
{
"upload_id": 21730384,
"shop_id": 10717757,
"user_id": 142383911,
"fs_id": 14622,
"status": "DONE",
"total_data": 1,
"success_rows_data": [
{
"product_id": 10440611523
}
]
}
Error Response Examples
{
"header": {
"process_time": 0,
"messages": "Your request has been processed successfully"
},
"data": {
"status": "DONE",
"total_data": 1,
"unprocessed_rows": 0,
"success_rows": 0,
"failed_rows": 1,
"failed_rows_data": [
{
"product_id": 2548494619,
"product_name": "TEST",
"product_price": 41000,
"sku": "",
"error": [
"Value [TEST] of field [name] is already used, please use different value"
]
}
],
"processed_rows": 1
}
}