ts-mailcow-api
    Preparing search index...

    Interface OAuthClient

    Represents an OAuth client returned by the Mailcow API.

    interface OAuthClient {
        client_id: string;
        client_secret: string;
        grant_types: string;
        id: number;
        redirect_uri: string;
        scope: string;
        user_id: string;
    }
    Index

    Properties

    client_id: string

    Unique identifier for the OAuth client.

    client_secret: string

    Secret key for the OAuth client.

    grant_types: string

    Grant types associated with the OAuth client.

    id: number

    ID of the OAuth entry.

    redirect_uri: string

    Redirect URI for the OAuth client.

    scope: string

    Scope for the OAuth client.

    user_id: string

    User ID associated with the OAuth client.