Actions74
- šÆ Campaign Management Actions
- š„ Lead Management Actions
- š§ Email Accounts Actions
- š Analytics & Stats Actions
- š Smart Delivery Actions
- Get Region Provider IDs
- Create Manual Placement Test
- Create Automated Placement Test
- Get Spam Test Details
- Delete Tests in Bulk
- Stop Automated Test
- List All Tests
- Get Provider Report
- Get Geo Report
- Get Sender Account Report
- Get Spam Filter Report
- Get DKIM Details
- Get SPF Details
- Get rDNS Report
- Get Sender Account List
- Get Blacklists
- Get Domain Blacklist
- Get Spam Test Email Content
- Get Email Reply Headers
- Get Schedule History
- Get IP Details
- Get Mailbox Summary
- Get Mailbox Count
- Get All Folders
- Create Folder
- Get Folder by ID
- Delete Folder
- š Webhooks Actions
- šØ Smart Senders Actions
Overview
This node integrates with the SmartLead platform's Smart Delivery resource, specifically supporting the Delete Tests in Bulk operation. It allows users to delete multiple email deliverability tests at once by providing an array of test IDs. This is useful for managing and cleaning up old or irrelevant deliverability tests efficiently.
Typical use cases include:
- Removing outdated or completed spam/placement tests from the Smart Delivery system.
- Automating cleanup of bulk tests after analysis or reporting.
- Managing test lifecycle programmatically within an email marketing automation workflow.
Example: A user has run multiple spam filter placement tests and wants to delete a batch of them by specifying their test IDs in one request rather than deleting each individually.
Properties
| Name | Meaning |
|---|---|
| Test IDs to Delete | An array of test IDs (strings) representing the Smart Delivery tests to be deleted. |
The property expects JSON input formatted as an array of strings, e.g.:
[
"test_id_1",
"test_id_2"
]
Output
The node outputs the response from the Smart Delivery API after attempting to delete the specified tests. The output is a JSON object or array reflecting the result of the bulk delete operation.
- The
jsonfield contains the API response data under adataproperty if present. - No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating requests to the SmartLead API.
- The base URL for Smart Delivery operations is
https://smartdelivery.smartlead.ai/api/v1. - The node uses HTTP POST method to send the bulk delete request with the test IDs in the request body.
Troubleshooting
- Invalid JSON in Test IDs: If the JSON array of test IDs is malformed, the node throws an error indicating invalid JSON. Ensure the input is valid JSON.
- API Authentication Errors: Missing or incorrect API credentials will cause authentication failures. Verify that the API key credential is correctly configured.
- Empty or Missing Test IDs: Providing an empty array or no test IDs will likely result in an error or no action. Always provide at least one valid test ID.
- Network or API Errors: Network issues or server errors from the SmartLead API may cause request failures. Check connectivity and API status.
Links and References
- SmartLead API Documentation (general reference for API endpoints)
- Smart Delivery API base URL:
https://smartdelivery.smartlead.ai/api/v1 - For JSON formatting help: JSONLint