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

Deletes dataset data with given row IDs.

Resource Information

Request Parameters

Parameters

Detail

Example
id (path parameter)
ID of the data set to delete data from. You can find the ID in the response to /api/dataSets.123
rowIds (path parameter)
List of row IDs to be deleted123,411,731

/api/dataSets/:id/data

Deletes dataset data based on a filter.

Resource Information

Request Parameters

Parameters

Detail

Example
id (path parameter)
ID of the data set to delete data from. You can find the ID in the response to /api/dataSets.123
filter

Filter used to load data.

Prefix (PT) can be used when join contains columns with the same names.

See the complete list of Filter operation types.

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

  • AND (default)
  • 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"}}}

Sample Request / Response

Using curl:

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'
  • No labels