AM
EN
Get Started Free
Menu
Types

Email Identity

Approved sender address for transactional email.

emailidentitysender

Email Identity

An Email Identity is an approved sender address for an account. Identities let you control which From addresses are allowed when sending email.

Schema

interface EmailIdentity {
  id: string; // "emi_..." - Unique identifier
  account_id: string; // Owning account
  email: string; // Sender email address
  name: string | null; // Optional display name
}

Properties

Property Type Description
id string KSUID with emi_ prefix
account_id string Account that owns identity
email string Sender email address
name string? Optional display name

Example

{
  "id": "emi_2kHfPZcN9xW4mE8RtY7vB",
  "account_id": "acc_1jGePYbM8wV3lD7QsX6uA",
  "email": "billing@example.com",
  "name": "Acme Billing"
}