Scenario
External system update basic SKU information to enable:
a) records of what items a member has bought
b) analysis of overall purchasing of members
c) automatically tag members when they bought certain items
Direction
External system will call EZR
Call path: api/pbase/prodcrmupload
Core Logic
Repeated updates will rewrite old data
100 pieces maximum at a time
Request Parameters
Field | Type | Required | Length | Description |
ItemNo | string | Yes | 1~20 | number of item |
Name | string | Yes | 1~128 | name of item |
EName | string | 0~128 | english name of item | |
BarCode | string | Yes | 1~30 | barcode of item |
RetailPrice | double | tag price of item | ||
PictureUrl | string | 0~255 | url of pictures |
Example Request (JSON)
[{
"ItemNo": "150190",
"Name": "长款迷彩休闲棉服",
"EName": "",
"BarCode": "15019001001",
"RetailPrice": 990.00,
"PictureUrl": "",
}, {
......
}]
Example Result (JSON)
{
"Status": true,
"StatusCode": 200,
"Msg": "成功",
"Timestamp": "20150622093101",
"Sign": "6ECC9BF07C69E80F6D8552FF7B2E7A8FCA2CC80E",
"Result": 见业务返回结果示例,