diff --git a/README.md b/README.md index 643b2af..5c6e80c 100644 --- a/README.md +++ b/README.md @@ -297,3 +297,36 @@ operation.reset(); } ``` + +#### 导出分析表数据 +请求地址:```/api/v1/export``` + +请求类型:POST + +请求参数: ``` {"tableId":"#表Id"} ``` + +返回值: +```json +{ + "code":"200", + "data":"https://...(导出的文件下载地址)", + "success":true +} +``` + +#### 批量导出分析表数据 +请求地址:```/api/v1/export/batch``` + +请求类型:POST + +请求参数: ``` {"tableIds":["#表a Id", "#表b Id", ...]} ``` + +返回值: +```json +{ + "code":"200", + "data":["https://...(表a下载地址)", "https://...(表b下载地址)", ...], + "success":true +} +``` +