Used to delete data from Data Table.
To use this API, the app needs to be given Read and Delete access to the Data Table from the Data Definition in DaaS (see here for details)
DELETE https://{{host}}/api/public/tables/{{tableName}}
Kore.ai Bots Platform provides access to bot development using secured APIs. Refer here to learn more on how to use these APIs.
Query Parameters
Parameter | Description |
---|---|
host | Environment URL, for example, https://bots.kore.ai |
tableName | Name of the Table to delete data |
本文パラメータ
パラメータ | 説明 |
---|---|
クエリ | 削除される行を特定するフィルタの基準
"query":{ "expressions": [ {"field": "<col1_name>", "operand": "=/!=/</>", "value": "<value1>"}, {"field": "<col2_name>", "operand": "=/!=/</>", "value": "<value2>"} ], "operator": "and/or" } |
認証
以下の構文を使用して、JWTをヘッダーに含むAPIを呼び出します。 auth: {{JWT}}
応答のコンテンツタイプ
application/json
サンプルリクエスト
curl -X DELETE \ http://{{host}}/api/public/tables/{{tableName}} \ -H 'auth: {{YOUR_JWT_ACCESS_TOKEN}}' \ -H 'content-type: application/json' \ -d '{ "query":{ "expressions": [ {"field": "firstName", "operand": "=", "value": "Jane"}, {"field": "lastName", "operand": "=", "value": "Doe"} ], "operator": "and" } }'
サンプル応答
{ “nDeleted”:1 }