- 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
- 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
AdvancedConfigGet - AdvancedConfigGet
POST
/rpc/advanced/config/get
Advanced configuration
1.
Illustrate:
2.
请求参数
Body 参数application/json
key
enum<integer> <int32>
必需
枚举值:
012345202122232425100101102
默认值:
0
示例
{
"key": 0
}
返回响应
🟢200A successful response.
application/json
Body
code
enum<integer> <int32>
必需
枚举值:
011000100110021003100410051006100715001501150320002500
默认值:
0
msg
string
Status reason
data
object (AdvancedConfigGetReply_Data Declare the response data structure)
可选
key
enum<integer> <int32>
必需
枚举值:
012345202122232425100101102
默认值:
0
doubleVal
number <double>
Double-precision floating-point value
floatVal
number <float>
Single-precision floating-point value
int32Val
integer <int32>
Signed 32-bit integer value
int64Val
string <int64>
Signed 64-bit integer value
uint32Val
integer <int64>
Unsigned 32-bit integer value
uint64Val
string <uint64>
An unsigned 64-bit integer value
boolVal
boolean
Boolean value
stringVal
string
String value
bytesVal
string <byte>
Byte slices/byte arrays
示例
{
"code": 0,
"msg": "string",
"data": {
"key": 0,
"doubleVal": 0,
"floatVal": 0,
"int32Val": 0,
"int64Val": "string",
"uint32Val": 0,
"uint64Val": "string",
"boolVal": true,
"stringVal": "string",
"bytesVal": "string"
}
}