- 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 information
- AiImageDetectIgnoreSet - Image Detection Filtering Settings
- AiRegisterResultCallback - Callback of the registration recognition result
- AiUnsafeMatching Intelligent Recognition - Non-Security AI Recognition (Strongly Not Recommended)
- AiLearning
- AiFastLearning Intelligent Recognition - Fast Learning
- Product features
- SkuFeatQueryImage Product Features - Query the learned imagePOST
- SkuFeatQuery Product Features - Query feature informationPOST
- SkuFeatRemove Product Features - Removes the specified characteristics of a specified productPOST
- SkuFeatClear Product Features - Clears all characteristics of the specified productPOST
- 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
SkuFeatQueryImage Product Features - Query the learned image
POST
/rpc/sku/feat/query/image
Product features
1.
请求参数
Body 参数application/json
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)
示例
{
"sku": {
"code": "string",
"name": "string",
"spuCode": "string"
}
}
返回响应
🟢200A successful response.
application/json
Body
code
enum<integer> <int32>
必需
枚举值:
011000100110021003100410051006100715001501150320002500
默认值:
0
msg
string
Status reason
data
object (SkuFeatQueryImageReply_Data Declare the response data structure)
可选
featImgList
array[object (SkuFeatImageInfo Product feature image information) {2}]
A list of product feature images
示例
{
"code": 0,
"msg": "string",
"data": {
"featImgList": [
{
"id": "string",
"path": "string"
}
]
}
}