This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-docs.git


The following commit(s) were added to refs/heads/main by this push:
     new cec2ebc  fix: remove UNSUPPORTED API (#94)
cec2ebc is described below

commit cec2ebcbe69b2baa9df1c7adcff6c55df9428b95
Author: CritasWang <[email protected]>
AuthorDate: Tue Sep 19 17:19:54 2023 +0800

    fix: remove UNSUPPORTED API (#94)
---
 src/UserGuide/Master/API/RestServiceV1.md    | 39 ----------------------------
 src/UserGuide/V1.2.x/API/RestServiceV1.md    | 39 ----------------------------
 src/zh/UserGuide/Master/API/RestServiceV1.md | 39 ----------------------------
 src/zh/UserGuide/V1.2.x/API/RestServiceV1.md | 39 ----------------------------
 4 files changed, 156 deletions(-)

diff --git a/src/UserGuide/Master/API/RestServiceV1.md 
b/src/UserGuide/Master/API/RestServiceV1.md
index 89ec126..80b6204 100644
--- a/src/UserGuide/Master/API/RestServiceV1.md
+++ b/src/UserGuide/Master/API/RestServiceV1.md
@@ -843,45 +843,6 @@ Sample response:
 }
 ```
 
-### insertRecords
-
-Request method: `POST`
-
-Request header: `application/json`
-
-Request path: http://ip:port/rest/v1/insertRecords
-
-Parameter Description:
-
-| parameter name |parameter type |is required|parameter describe|
-|:---------------| :--- | :---| :---|
-| timestamps     | array | yes |  Time column  |
-| measurementsList   | array | yes  | The name of the measuring point |
-| dataTypesList     | array | yes  | The data type |
-| valuesList         | array | yes  | Value columns, the values in each column 
can be `null` |
-| deviceIds         | string | yes  | Device name |
-
-Example request:
-```shell
-curl -H "Content-Type:application/json" -H "Authorization:Basic cm9vdDpyb290" 
-X POST --data 
'{"timestamps":[1635232113960,1635232151960,1635232151860,1635232152960],"measurementsList":[["s33","s44"],["s55","s66"],["s77","s88"],["s771","s881"]],"dataTypesList":[["INT32","INT64"],["FLOAT","DOUBLE"],["FLOAT","DOUBLE"],["BOOLEAN","TEXT"]],"valuesList":[[1,11],[2.1,2],[4,6],[false,"cccccc"]],"deviceIds":["root.s1","root.s1","root.s1","root.s3"]}'
 http://127.0.0.1:18080/rest/v1/insertRecords
-```
-
-Sample response:
-
-|parameter name  |parameter type |parameter describe|
-|:--- | :--- | :---|
-| code | integer |  status code |
-| message  |  string | message |
-
-Sample response:
-```json
-{
-  "code": 200,
-  "message": "SUCCESS_STATUS"
-}
-```
-
-
 ## Configuration
 
 The configuration is located in 'iotdb-rest.properties'.
diff --git a/src/UserGuide/V1.2.x/API/RestServiceV1.md 
b/src/UserGuide/V1.2.x/API/RestServiceV1.md
index 89ec126..80b6204 100644
--- a/src/UserGuide/V1.2.x/API/RestServiceV1.md
+++ b/src/UserGuide/V1.2.x/API/RestServiceV1.md
@@ -843,45 +843,6 @@ Sample response:
 }
 ```
 
-### insertRecords
-
-Request method: `POST`
-
-Request header: `application/json`
-
-Request path: http://ip:port/rest/v1/insertRecords
-
-Parameter Description:
-
-| parameter name |parameter type |is required|parameter describe|
-|:---------------| :--- | :---| :---|
-| timestamps     | array | yes |  Time column  |
-| measurementsList   | array | yes  | The name of the measuring point |
-| dataTypesList     | array | yes  | The data type |
-| valuesList         | array | yes  | Value columns, the values in each column 
can be `null` |
-| deviceIds         | string | yes  | Device name |
-
-Example request:
-```shell
-curl -H "Content-Type:application/json" -H "Authorization:Basic cm9vdDpyb290" 
-X POST --data 
'{"timestamps":[1635232113960,1635232151960,1635232151860,1635232152960],"measurementsList":[["s33","s44"],["s55","s66"],["s77","s88"],["s771","s881"]],"dataTypesList":[["INT32","INT64"],["FLOAT","DOUBLE"],["FLOAT","DOUBLE"],["BOOLEAN","TEXT"]],"valuesList":[[1,11],[2.1,2],[4,6],[false,"cccccc"]],"deviceIds":["root.s1","root.s1","root.s1","root.s3"]}'
 http://127.0.0.1:18080/rest/v1/insertRecords
-```
-
-Sample response:
-
-|parameter name  |parameter type |parameter describe|
-|:--- | :--- | :---|
-| code | integer |  status code |
-| message  |  string | message |
-
-Sample response:
-```json
-{
-  "code": 200,
-  "message": "SUCCESS_STATUS"
-}
-```
-
-
 ## Configuration
 
 The configuration is located in 'iotdb-rest.properties'.
diff --git a/src/zh/UserGuide/Master/API/RestServiceV1.md 
b/src/zh/UserGuide/Master/API/RestServiceV1.md
index f9a733b..c1644c6 100644
--- a/src/zh/UserGuide/Master/API/RestServiceV1.md
+++ b/src/zh/UserGuide/Master/API/RestServiceV1.md
@@ -857,45 +857,6 @@ curl -H "Content-Type:application/json" -H 
"Authorization:Basic cm9vdDpyb290" -X
 }
 ```
 
-### insertRecords
-
-请求方式:`POST`
-
-请求头:`application/json`
-
-请求路径:http://ip:port/rest/v1/insertRecords
-
-参数说明:
-
-| 参数名称             |参数类型  |是否必填|参数描述|
-|------------------| ------------ | ------------ |------------ |
-| timestamps       | array | 是 |  时间列  |
-| measurementsList | array | 是  | 测点名称 |
-| dataTypesList    | array | 是  | 数据类型  |
-| valuesList       | array | 是  | 值列,每一列中的值可以为 `null` |
-| deviceIds        | string | 是  | 设备名称 |
-
-请求示例:
-```shell
-curl -H "Content-Type:application/json" -H "Authorization:Basic cm9vdDpyb290" 
-X POST --data 
'{"timestamps":[1635232113960,1635232151960,1635232151860,1635232152960],"measurementsList":[["s33","s44"],["s55","s66"],["s77","s88"],["s771","s881"]],"dataTypesList":[["INT32","INT64"],["FLOAT","DOUBLE"],["FLOAT","DOUBLE"],["BOOLEAN","TEXT"]],"valuesList":[[1,11],[2.1,2],[4,6],[false,"cccccc"]],"deviceIds":["root.s1","root.s1","root.s1","root.s3"]}'
 http://127.0.0.1:18080/rest/v1/insertRecords
-```
-
-响应参数:
-
-|参数名称  |参数类型  |参数描述|
-| ------------ | ------------ | ------------|
-| code | integer |  状态码 |
-| message  |  string | 信息提示 |
-
-响应示例:
-```json
-{
-  "code": 200,
-  "message": "SUCCESS_STATUS"
-}
-```
-
-
 ## 配置
 
 配置位于 `iotdb-common.properties` 中。
diff --git a/src/zh/UserGuide/V1.2.x/API/RestServiceV1.md 
b/src/zh/UserGuide/V1.2.x/API/RestServiceV1.md
index f9a733b..c1644c6 100644
--- a/src/zh/UserGuide/V1.2.x/API/RestServiceV1.md
+++ b/src/zh/UserGuide/V1.2.x/API/RestServiceV1.md
@@ -857,45 +857,6 @@ curl -H "Content-Type:application/json" -H 
"Authorization:Basic cm9vdDpyb290" -X
 }
 ```
 
-### insertRecords
-
-请求方式:`POST`
-
-请求头:`application/json`
-
-请求路径:http://ip:port/rest/v1/insertRecords
-
-参数说明:
-
-| 参数名称             |参数类型  |是否必填|参数描述|
-|------------------| ------------ | ------------ |------------ |
-| timestamps       | array | 是 |  时间列  |
-| measurementsList | array | 是  | 测点名称 |
-| dataTypesList    | array | 是  | 数据类型  |
-| valuesList       | array | 是  | 值列,每一列中的值可以为 `null` |
-| deviceIds        | string | 是  | 设备名称 |
-
-请求示例:
-```shell
-curl -H "Content-Type:application/json" -H "Authorization:Basic cm9vdDpyb290" 
-X POST --data 
'{"timestamps":[1635232113960,1635232151960,1635232151860,1635232152960],"measurementsList":[["s33","s44"],["s55","s66"],["s77","s88"],["s771","s881"]],"dataTypesList":[["INT32","INT64"],["FLOAT","DOUBLE"],["FLOAT","DOUBLE"],["BOOLEAN","TEXT"]],"valuesList":[[1,11],[2.1,2],[4,6],[false,"cccccc"]],"deviceIds":["root.s1","root.s1","root.s1","root.s3"]}'
 http://127.0.0.1:18080/rest/v1/insertRecords
-```
-
-响应参数:
-
-|参数名称  |参数类型  |参数描述|
-| ------------ | ------------ | ------------|
-| code | integer |  状态码 |
-| message  |  string | 信息提示 |
-
-响应示例:
-```json
-{
-  "code": 200,
-  "message": "SUCCESS_STATUS"
-}
-```
-
-
 ## 配置
 
 配置位于 `iotdb-common.properties` 中。

Reply via email to