Transformations

Delete Transformations

Deletes transformations by specifying pipeline ID, list of reference IDs, or list of transformation IDs. Will delete intersection of all params specified.

DELETE
/v1-beta/transformations
x-api-key<token>

Authenticate using API Key in request header

In: header

Query Parameters

pipelineID?string

The unique ID for a given pipeline. Will filter to just the transformations processed by the given pipeline. If left out, will query over ALL transformations for your account.

referenceIDs?array<string>

Array with the reference IDs of the transformed data points. Formatted as a CSV array.

transformationIDs?array<string>

Array with the transform IDs of the transformed data points. Formatted as a CSV array.

Response Body

curl -X DELETE "https://api.bem.ai/v1-beta/transformations?pipelineID=string&referenceIDs=string&transformationIDs=string"
{
  "deleteCount": 0
}