Kong · Schema

PatchPortalEmailConfig

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
domain_name string The domain name to use for sending emails. Null means default.
from_name string The name to display in the 'From' field of emails.
from_email string The email address to use in the 'From' field.
reply_to_email string The email address to use in the 'Reply-To' field. If set to null, 'Reply-To' header is omitted.
View JSON Schema on GitHub

JSON Schema

kong-patchportalemailconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchPortalEmailConfig",
  "title": "PatchPortalEmailConfig",
  "type": "object",
  "properties": {
    "domain_name": {
      "description": "The domain name to use for sending emails. Null means default.",
      "type": "string",
      "nullable": true
    },
    "from_name": {
      "description": "The name to display in the 'From' field of emails.",
      "type": "string",
      "nullable": true
    },
    "from_email": {
      "description": "The email address to use in the 'From' field.",
      "type": "string",
      "format": "email",
      "nullable": true
    },
    "reply_to_email": {
      "description": "The email address to use in the 'Reply-To' field. If set to null, 'Reply-To' header is omitted.",
      "type": "string",
      "format": "email",
      "nullable": true
    }
  },
  "additionalProperties": false
}