- Get started quickly
- Docking availability
- Functional classification
- Features
- gRPC interface
- HTTP interface
- Version information
- Advanced configuration
- Camera management
- Device management
- Intelligent recognition
- AiPushWeight intelligently recognizes and pushes weight informationPOST
- AiImageDetectIgnoreSet - Image Detection Filtering SettingsPOST
- AiRegisterResultCallback - Callback of the registration recognition resultPOST
- AiUnsafeMatching Intelligent Recognition - Non-Security AI Recognition (Strongly Not Recommended)POST
- AiLearningPOST
- AiFastLearning Intelligent Recognition - Fast LearningPOST
- Product features
- Learning data
- Algorithmic models
- Product data
- Automatic syncing
- AutoSyncGetSelfInfo Auto Sync - Get native information
- AutoSyncGetGroupsInfo - Get grouping table information
- AutoSyncRemoveDevice Auto Sync - Remove the device
- AutoSyncJoinGroup
- AutoSyncExitGroup Auto-sync-exit group
- AutoSyncSetIntervalTime - Set the interval
- AutoSyncUpdateDataSyncRule - Updates the data synchronization rule
- AutoSyncCreateGroup Auto Sync - Create a group
- AutoSyncUpdateGroupName Auto Sync - Update the group name
AiLearning
POST
/rpc/ai/learning
Intelligent recognition
1.
请求参数
Body 参数application/json
id
string <int64>
Identification ID【Required】
sku
object (SkuInfo Listing)
必需
code
string
Product unique code
name
string
The title of the product
spuCode
string
Product parent code (if spuCode==code or spuCode is empty, the product is a top-level product)
learningMode
enum<integer> <int32>
必需
枚举值:
0123
默认值:
0
skuSaleInfo
object (SkuSaleInfo Product sales information)
可选
sales
integer <int32>
可选
priceUnit
integer <int32>
Pricing method (0-weight pricing, 1-quantity pricing)
price
integer <int32>
Original Unit Price (min/kg)
salePrice
integer <int32>
Sales Unit Price (min/kg)
amount
integer <int32>
可选
barCode
string
Barcode
priceChangeMode
integer <int32>
Whether the price of the product has been changed (0-no price change, 1-unit price, 2-total price)
priceType
integer <int32>
可选
示例
{
"id": "string",
"sku": {
"code": "string",
"name": "string",
"spuCode": "string"
},
"learningMode": 0,
"skuSaleInfo": {
"sales": 0,
"priceUnit": 0,
"price": 0,
"salePrice": 0,
"amount": 0,
"barCode": "string",
"priceChangeMode": 0,
"priceType": 0
}
}
返回响应
🟢200A successful response.
application/json
Body
code
enum<integer> <int32>
必需
枚举值:
011000100110021003100410051006100715001501150320002500
默认值:
0
msg
string
Status reason
示例
{
"code": 0,
"msg": "string"
}