ts-mailcow-api
    Preparing search index...

    Interface AppPassword

    Represents an app password returned by the Mailcow API.

    interface AppPassword {
        active: string;
        created: string;
        domain: string;
        id: number;
        mailbox: string;
        modified: string;
        name: string;
    }
    Index

    Properties

    active: string

    String indicating if the app password is active ("1" for yes, "0" for no).

    created: string

    Creation timestamp of the app password.

    domain: string

    Domain associated with the app password.

    id: number

    Unique identifier of the app password.

    mailbox: string

    Mailbox associated with the app password.

    modified: string

    Last modified timestamp, or null if it was never modified.

    name: string

    Name of the app associated with this password.