Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sv translation
languageja

/api/dataSets/:id/data/:rowIds

Deletes dataset data with given row IDs.指定された行IDのデータセットデータを削除します。

リソース情報

リソースURL

https://service.belladati.com/api/dataSets/:id/data/:rowIds

HTTPメソッド

DELETE

リクエストパラメーター

パラメーター

詳細

id (path parameter)
ID of the data set to delete data from. You can find the ID in the response to 

データを削除するデータセットのID。 IDは、/api/dataSets

.

へのレスポンスで確認できます。

123
rowIds (path parameter)
List of row IDs to be deleted
削除する行IDのリスト123,411,731


/api/dataSets/:id/data

Deletes dataset data based on a filter.フィルターに基づいてデータセットデータを削除します。

リソース情報

リソースURL

https://service.belladati.com/api/dataSets/:id/data

HTTPメソッド

DELETE

リクエストパラメーター

パラメーター

詳細

id (path parameter)
ID of the data set to delete data from. You can find the ID in the response to 

データを削除するデータセットのID。 IDは、/api/dataSets

.

へのレスポンスで確認できます。

123
filter

Filter used to load data.

Prefix See the complete list of 

データのロードに使用されるフィルター。

プレフィックス (PT)

can be used when join contains columns with the same names.

は、結合に同じ名前の列が含まれている場合に使用できます。

Filter operation types

.

のリストをご覧ください。

conditionType (

optional) is used to define condition operator between conditions. Available values

オプション) は、条件間の条件演算子を定義するために使用されます。利用可能な値:

  • AND (デフォルト)
  • OR
Searching part of String: use

文字列の一部を検索する: ワイルドカード '%'

wildcard to search selected String in data set values. E.g.

を使用して、データセット値で選択した文字列を検索します。例: "value": "%al%"

{"drilldown":{"L_COUNTRY":{"op":"EQ","value":"USA"}}}


サンプルリクエスト/レスポンス

curl使用:

Code Block
curl --location --request DELETE 'https://service.belladati.com/api/dataSets/51/data/411,731?oauth_consumer_key=apiKey&oauth_token=e112f77a6485a1c369641c63fa858dbe&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1611844124&oauth_nonce=1611844124&oauth_version=1.0&oauth_signature=7DI6tg8TJCYH3U/TxGQ5Gk38iz8=' \
--header 'Content-Type: application/x-www-form-urlencoded'


...