Create PinPoint Campaign
Description
Input Schema
{
"description": "Import PinPoint campaign node input.",
"properties": {
"application_id": {
"description": "The ID of the application to import the segment to.",
"title": "Application ID",
"type": "string"
},
"name": {
"description": "Campaign Name.",
"title": "Campaign Name",
"type": "string"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "",
"description": "Campaign Description.",
"title": "Campaign Description"
},
"segment_id": {
"description": "Segment ID.",
"title": "Segment ID",
"type": "string"
},
"email_body": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "",
"description": "Email Body.",
"title": "Email Body"
},
"email_html_body": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "",
"description": "Email HTML Body.",
"title": "Email HTML Body"
},
"email_title": {
"description": "Email Title.",
"title": "Email Title",
"type": "string"
},
"email_from_address": {
"description": "Email From Address.",
"title": "Email From Address",
"type": "string"
}
},
"required": [
"application_id",
"name",
"segment_id",
"email_title",
"email_from_address"
],
"title": "CreatePinPointCampaignNodeInput",
"type": "object"
}Output Schema
How It Works
Usage Examples
Example 1: Product Launch Email Campaign
Example 2: Newsletter Campaign
Example 3: Minimal Campaign with Text-Only Email
Common Use Cases
Error Handling
Error Type
Cause
Solution
Notes
Last updated