nylas
    Preparing search index...

    Interface UpdateDomainRequest

    Interface representing a request to update a domain.

    Only non-null fields are persisted. domainAddress cannot be updated and is rejected with a 400 if supplied. The update response echoes the sparse cleared input (typically just name and updatedAt), not a full Domain; re-fetch the domain if you need the complete record.

    interface UpdateDomainRequest {
        dkimPublicKey?: string;
        dkimSubmittedAt?: number;
        name?: string;
        region?: string;
        tenantKey?: string;
        verifiedFeedback?: boolean;
    }
    Index

    Properties

    dkimPublicKey?: string

    New BYODKIM public key.

    dkimSubmittedAt?: number

    Unix timestamp when the DKIM key was submitted to the provider.

    name?: string

    New human-readable label.

    region?: string

    New cluster region.

    tenantKey?: string

    New SES tenant key.

    verifiedFeedback?: boolean

    Feedback MX verification flag. This is the only verified flag that can be set directly, without running a DNS verification.