簡介
API 簡介
通過刪除多筆資料 API,可以批次刪除資料。
附註:
刪除多筆資料 API 一次最多支持刪除 100 筆資料。
API 調用
按照指定資料 ID 批次從表單中刪除資料。
請求頻率:10 次/秒
請求方式:POST
請求參數:
參數 | 必須 | 類型 | 說明 |
app_id | 是 | String | 應用 ID |
entry_id | 是 | String | 表單 ID |
data_ids | 是 | String[] | 要刪除的資料 ID 數組 |
請求示例:
{ "app_id": "59264073a2a60c0c08e20bfb", "entry_id": "59264073a2a60c0c08e20bfd", "data_ids": [ "200001181fe09728936510eb", "200001181fe09728936510ec", "200001181fe09728936510ed" ] }
回應參數:
參數 | 類型 | 說明 |
status | String | 成功返回“success” |
success_count | number | 刪除成功的資料筆數 |
回應示例:
{ "status": "success", "success_count": 3 }