smartlead_create_campaign
Create new email marketing campaigns in Smartlead by defining campaign names and client IDs to organize and launch targeted email outreach.
Instructions
Create a new campaign in Smartlead.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client_id | No | Client ID for the campaign | |
name | Yes | Name of the campaign |
Input Schema (JSON Schema)
{
"properties": {
"client_id": {
"description": "Client ID for the campaign",
"type": "number"
},
"name": {
"description": "Name of the campaign",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}