delete_data_record
Deletes a data record by supplying the savable Data Page ID and primary key parameters. Uses conditional save plan for deletion, supported on data object classes.
Instructions
Delete a data record based on conditional save plan configured for a savable Data Page. Only supported on data object classes. Requires primary key(s) to uniquely identify the record to delete.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dataViewID | Yes | ID of savable Data Page containing the record to delete. a valid data page identifier configured for delete operations. | |
| dataViewParameters | Yes | Primary key(s) as JSON string to uniquely identify the data record to delete. a valid JSON object containing key-value pairs. For example: "{\"CustomerID\": \"12345\"}" or "{\"OrderID\": \"O-1001\", \"CustomerID\": \"C-5678\"}". Note: String format like "CustomerID=12345" will cause validation errors. | |
| sessionCredentials | No | Optional session-specific credentials. If not provided, uses environment variables. Supports two authentication modes: (1) OAuth mode - provide baseUrl, clientId, and clientSecret, or (2) Token mode - provide baseUrl and accessToken. |