Actions25
- Export
- Get List Items
- Get Line Items
- Get Line Item Dimension IDs
- Get Module Line Item Metadata
- Get Line Item Metadata (Model)
- Get List Data
- Update Module Cells
- Get Files
- Upload File
- Reset List Index
- Delete List Items
- Initiate List Read Request
- Download List Read Request Page
- Delete List Read Request
- Import List
- Get Single Cell
- Get Line Item Dimensions
- Get List Metadata
- Add List Items
- Import
- Update List Items
- Preview List Data
- Get List Read Request Status
- Import Module
Overview
This node interacts with the Anaplan API to perform various operations related to Anaplan workspaces, models, and lists. Specifically, the 'Delete List Items' operation allows users to delete items from a specified Anaplan list within a selected workspace and model. This is useful for managing and cleaning up list data in Anaplan models programmatically, such as removing outdated or incorrect list entries.
Use Case Examples
- Deleting obsolete entries from a customer list in an Anaplan model.
- Removing test data from a list before a production run.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method used to authenticate with the Anaplan API, currently supports Basic Auth. |
| Workspace ID | Select the Anaplan workspace where the target model resides. |
| Model ID | Select the Anaplan model within the chosen workspace. |
| List ID | Select the specific Anaplan list from which items will be deleted. |
| Confirm Write Operation | Boolean flag to confirm the write operation, required to enable deletion to prevent accidental data loss. |
Output
JSON
success- Indicates whether the delete operation was successful.deletedItemCount- Number of list items deleted.message- Additional information or error messages related to the delete operation.
Dependencies
- Anaplan API with Basic Authentication
Troubleshooting
- Ensure the 'Confirm Write Operation' flag is set to true to allow deletion; otherwise, the operation will not proceed.
- Verify that the Workspace ID, Model ID, and List ID are correctly selected and that the user has appropriate permissions.
- Common errors include authentication failures due to incorrect credentials and API errors if the list or items do not exist.
Links
- Anaplan API - Delete List Items - Official Anaplan API documentation for deleting list items.