Authorization: Bearer ********************{
"dbId": "db_123456",
"tableName": "users",
"data": [
{
"name": "张三",
"age": 25,
"email": "zhangsan@example.com"
},
{
"name": "李四",
"age": 30,
"email": "lisi@example.com"
}
]
}curl --location --request POST 'https://insight.juzibot.com/openapi/knowledge-base/data-knowledge/table/insert' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"dbId": "db_123456",
"tableName": "users",
"data": [
{
"name": "张三",
"age": 25,
"email": "zhangsan@example.com"
},
{
"name": "李四",
"age": 30,
"email": "lisi@example.com"
}
]
}'{
"code": 0,
"data": {
"successCount": 0,
"failedCount": 0,
"failedRecords": [
{
"index": 0,
"data": {},
"error": "string"
}
]
}
}