delete-data-record
delete-data-record Function Type
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.taskId
Configuration 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: string
Updated about 2 hours ago