{ "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" }