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 Get All Folders operation. It retrieves a list of all folders related to email deliverability testing and placement analysis within Smart Delivery.
This node is useful for users who want to programmatically access and manage their folder structures in Smart Delivery, such as organizing tests or reports into folders. For example, an email marketing team might use this node to fetch all folders before creating new placement tests or generating reports categorized by folder.
Properties
| Name | Meaning |
|---|---|
| Additional Fields | A collection of optional parameters: |
| - Limit | Number of results to return (default 100) |
| - Offset | Number of results to skip (default 0) |
| - Status | Campaign status filter with options: Active, Paused, Stopped (default Active) |
Note: The above properties are from the provided JSON but are generally applicable to campaign-related operations. For the Smart Delivery > Get All Folders operation, no additional input properties are required beyond selecting the resource and operation.
Output
The output is a JSON array representing the folders retrieved from the Smart Delivery API endpoint /folders. Each item in the array corresponds to a folder object containing details such as folder ID, name, description, and possibly other metadata related to the folder.
The node does not output binary data for this operation.
Example output structure (simplified):
[
{
"id": "folder_id_1",
"name": "Folder Name 1",
"description": "Description of folder 1"
},
{
"id": "folder_id_2",
"name": "Folder Name 2",
"description": "Description of folder 2"
}
]
Dependencies
- Requires an API key credential for authenticating with the SmartLead API.
- The base URL for Smart Delivery API calls is
https://smartdelivery.smartlead.ai/api/v1. - The node uses HTTP GET method to fetch folders.
- No additional environment variables are needed beyond the configured API authentication.
Troubleshooting
- Invalid JSON Errors: Not applicable for this operation since it does not require JSON input.
- Authentication Errors: Ensure that the API key credential is correctly configured and has permissions to access Smart Delivery resources.
- Empty Results: If no folders are returned, verify that folders exist in the Smart Delivery account and that the API user has access rights.
- Network Issues: Check connectivity to
smartdelivery.smartlead.aiand ensure no firewall or proxy blocks the requests.
Links and References
- SmartLead API Documentation (general reference; specific Smart Delivery endpoints may be documented there)
- Smart Delivery API base URL:
https://smartdelivery.smartlead.ai/api/v1 - n8n documentation on HTTP Request Authentication (for setting up API credentials)
If you need summaries for other operations or resources, please provide their names.