featherbit UI
    Preparing search index...

    Interface AcmeCert

    One managed certificate as served by GET /api/acme/certs (never includes key material).

    interface AcmeCert {
        domains: string[];
        id: string;
        issuer: string;
        last_attempt_at: number | null;
        last_error: string | null;
        next_renewal_at: number | null;
        not_after: number;
        not_before: number;
        serial: string;
        state: AcmeCertState;
    }
    Index
    domains: string[]
    id: string

    Normalized, comma-joined domain set; the renew endpoint's path parameter.

    issuer: string
    last_attempt_at: number | null
    last_error: string | null
    next_renewal_at: number | null
    not_after: number
    not_before: number

    Unix seconds; 0 while a placeholder is served.

    serial: string