smartlead_list_all_tests
Retrieve all Smart Delivery tests (manual or automated) with pagination controls to manage email marketing campaign testing data.
Instructions
List all Smart Delivery tests, either manual or automated.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of tests to retrieve (default: 10) | |
offset | No | Offset for pagination (default: 0) | |
testType | Yes | Type of tests to list (manual or auto) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of tests to retrieve (default: 10)",
"type": "integer"
},
"offset": {
"description": "Offset for pagination (default: 0)",
"type": "integer"
},
"testType": {
"description": "Type of tests to list (manual or auto)",
"enum": [
"manual",
"auto"
],
"type": "string"
}
},
"required": [
"testType"
],
"type": "object"
}