Actions37
- 🎯 Campaign Management Actions
- 👥 Lead Management Actions
- 📧 Email Accounts Actions
- 📊 Analytics & Stats Actions
Overview
The node integrates with the SmartLead API to manage email marketing campaigns. Specifically, the Save Sequence operation under the 🎯 Campaign Management resource allows users to save or update the email sequence associated with a particular campaign. This is useful for automating and controlling the flow of emails sent as part of a campaign.
Typical use cases include:
- Defining or updating the series of emails that will be sent in a campaign.
- Automating follow-up sequences based on campaign strategy.
- Managing campaign content dynamically from within n8n workflows.
For example, after creating a campaign, you can use this operation to upload or modify the sequence of emails that leads will receive.
Properties
| Name | Meaning |
|---|---|
| Campaign ID | The unique identifier of the campaign for which the email sequence will be saved. |
| Additional Fields | Optional parameters including: • Limit: Number of results to return • Offset: Number of results to skip • Status: Campaign status (Active, Paused, Stopped) |
Note: For the Save Sequence operation, the primary required property is the Campaign ID. Additional fields are available but not specifically detailed for this operation in the provided input.
Output
The node outputs JSON data representing the response from the SmartLead API after saving the campaign sequence. The structure typically includes the updated sequence details or confirmation of the save action.
- The
jsonoutput field contains the API response data. - No binary data output is indicated for this operation.
Dependencies
- Requires an active connection to the SmartLead API.
- An API key credential must be configured in n8n to authenticate requests.
- The base URL used is
https://server.smartlead.ai/api/v1.
Troubleshooting
Common issues:
- Invalid or missing Campaign ID will cause the API request to fail.
- Authentication errors if the API key credential is not set up correctly.
- Network connectivity problems may prevent reaching the SmartLead server.
Error messages:
- Errors returned by the API will be included in the node output if "Continue On Fail" is enabled.
- Typical error messages might include "Unauthorized" (check API credentials), "Not Found" (invalid campaign ID), or validation errors related to the sequence data.
Resolution tips:
- Verify the Campaign ID is correct and exists in SmartLead.
- Ensure the API key credential is valid and has necessary permissions.
- Check network access and proxy settings if applicable.
Links and References
- SmartLead API Documentation (Assumed typical location; verify actual docs URL)
- n8n documentation on API Credentials
- General guidance on Handling API Requests in n8n