Remove

Parameters

Key

Type

REQUIRED

collection

String (Collection Name)

upload

String (Upload Name)

rows

Array of data integers

Example

The example below removes rows 1,2 & 5 from "Upload 1" in the collection "Collection 1"

circle-exclamation
curl -X POST \
  v1/data/remove\
  -H 'Authorization: Basic <Your Base64 Encoded Token>'\
  -d '{
    "collection" : "My Collection",
    "upload"     : "Upload 1",
    "rows"       : [1,2,5]
}'

Success Response

The response return number of deletes and rows that were removed. If the row number does not exist the row is ignored.

Last updated