添加表数据
最新更新:2024-11-21

添加表数据

支持通过该 API 接口,单次将最多 1000 行数据添加到指定的 Bot 的数据表中,以便在对话中使用和查询。

请求方式

POST

调用地址

https://api.gptbots.ai/v1/database/import/records

调用验证

详情参见 API 概述的鉴权方式说明。

请求

请求示例

curl -X POST https://api.gptbots.ai/v1/database/import/records \ -H 'Authorization: Bearer your_apikey' \ -H 'Content-Type: application/json' \ -d '{ "table_id": "673af861ed69656ac0895b07", "records": [ { "values": { "id": "7424489", "name": "4455566777777" } }, { "values": { "id": "7852549", "name": "446656677665" } } ] }'
          curl -X POST https://api.gptbots.ai/v1/database/import/records \ 
  -H 'Authorization: Bearer your_apikey' \ 
  -H 'Content-Type: application/json' \ 
  -d '{
    "table_id": "673af861ed69656ac0895b07",
    "records": [
        {
            "values": {
                "id": "7424489",
                "name": "4455566777777"
            }
        },
        
        {
            "values": {
                "id": "7852549",
                "name": "446656677665"
            }
        }
    ]
}'

        
此代码块在浮窗中显示

请求头

字段 类型 描述
Authorization Bearer ${token} 使用 Authorization: Bearer ${token}进行调用验证,请在 API 密钥页面获取密钥作为 token。
Content-Type application/json 数据类型,取值为 application/json。

请求体

字段 类型 必填 描述
records list 导入的数据集合。
table_id string 表id。

响应

响应示例

{ "code": 0, "message": "OK", "data": [ "673e9cda9f7bc178002dbd9c" ] }
          {
    "code": 0,
    "message": "OK",
    "data": [
        "673e9cda9f7bc178002dbd9c"
    ]
}

        
此代码块在浮窗中显示

成功响应

字段 类型 描述
code int 消息的类型编码。
message string 消息描述。
data object 回复内容,数据表的唯一标识。

失败响应

字段 类型 描述
code int 错误码。
message string 错误详情。

错误码

Code Message
40000 参数错误
50000 系统内部错误