SmartLead icon

SmartLead

Comprehensive SmartLead API integration for email marketing automation

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.ai and ensure no firewall or proxy blocks the requests.

Links and References


If you need summaries for other operations or resources, please provide their names.

Discussion