nylas
    Preparing search index...

    Interface DomainVerificationResult

    Interface representing the result of a domain Info or Verify request.

    Info and Verify return the same shape. Every field is optional.

    interface DomainVerificationResult {
        attempt?: DomainVerificationAttemptResult;
        createdAt?: number;
        details?: Record<string, any>;
        domainId?: string;
        expiresAt?: number;
        message?: string;
        status?: DomainVerificationStatus;
    }
    Index

    Properties

    The verification attempt, including the DNS record to configure.

    createdAt?: number

    Unix timestamp when the attempt record was created.

    details?: Record<string, any>

    Optional in-between state.

    domainId?: string

    The ID of the domain being verified.

    expiresAt?: number

    Unix timestamp when the temporary attempt expires.

    message?: string

    Human-readable instruction for configuring the DNS record.

    The current status for this verification type.