Delete Data Record
The delete-data-record function type deletes a data record by ID.
Usage
This function type is used in Actions to provide access to data collection delete functionality.
Configuration Example
name: Delete Task
key: delete-task
type: delete-data-record
config:
  dataSource:
    collectionKey: tasks
  # Required: record ID
  id:
    $var: $.input.taskIdConfiguration Parameters
dataSource- Data source configurationcollectionKey- Identifier of the data collection to operate oncollectionParameters- Parameters passed to the collection methods
id- Record ID to delete (supports formulas)
Output Schema
type: object
properties:
  id:
    type: stringUpdated 10 days ago
