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
The "Stop Automated Test" operation in the Smart Delivery resource allows users to stop an ongoing automated email deliverability test. This is useful when you want to halt a scheduled or running spam/placement test that evaluates how emails perform across various providers and regions.
Typical scenarios include:
- Stopping a test early if issues are detected.
- Halting tests to adjust configurations before restarting.
- Managing test lifecycle programmatically within an automation workflow.
For example, after scheduling an automated placement test for your marketing emails, you might decide to stop it based on preliminary results or changes in campaign strategy. This operation provides a direct API call to stop such tests by specifying their unique Test ID.
Properties
| Name | Meaning |
|---|---|
| Test ID | The unique identifier of the spam or placement test you want to stop. |
| Additional Fields | (Not applicable for this operation) |
Output
The node returns JSON data representing the response from the API after attempting to stop the automated test. Typically, this will include confirmation of the test being stopped or relevant status information.
The output structure is:
{
"data": {
// API response details about the stopped test
}
}
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the SmartLead API.
- The node makes HTTP PUT requests to the Smart Delivery API endpoint:
https://smartdelivery.smartlead.ai/api/v1/spam-test/stop/{testId} - Proper network access to the SmartLead API server is necessary.
Troubleshooting
- Invalid Test ID: If the provided Test ID does not exist or is malformed, the API may return an error indicating the test was not found. Verify the Test ID is correct.
- Authentication Errors: Ensure the API key credential is valid and has permissions to manage Smart Delivery tests.
- Network Issues: Connectivity problems can cause request failures. Check internet connection and firewall settings.
- JSON Parsing Errors: Not applicable here since no JSON input is required beyond the Test ID string.
- API Rate Limits: Excessive calls may be throttled; handle errors accordingly.
If the node throws an error related to invalid JSON, it likely pertains to other operations but not this one, as this operation only requires a simple string Test ID.
Links and References
- SmartLead API Documentation (general reference for API endpoints)
- Smart Delivery Spam Test API (specific section for spam test management)
This summary focuses exclusively on the "Stop Automated Test" operation under the "Smart Delivery" resource as requested.