{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/marketing-emal-api-smtp-token-create-request-schema.json", "title": "SmtpTokenCreateRequest", "description": "Request body for creating an SMTP token", "type": "object", "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" ] }