HubSpot · Schema

SmtpTokenCreateRequest

Request body for creating an SMTP token

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
campaignName string The name for the email campaign
createContact boolean Whether to create contacts for recipients who don't exist
View JSON Schema on GitHub

JSON Schema

hubspot-marketing-emal-smtp-token-create-request-schema.json Raw ↑
{
  "type": "object",
  "description": "Request body for creating an SMTP token",
  "properties": {
    "campaignName": {
      "type": "string",
      "description": "The name for the email campaign",
      "example": "Order Confirmation Emails"
    },
    "createContact": {
      "type": "boolean",
      "description": "Whether to create contacts for recipients who don't exist",
      "example": true
    }
  },
  "required": [
    "campaignName",
    "createContact"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SmtpTokenCreateRequest"
}