@makehq/sdk
    Preparing search index...

    Type Alias Key

    Represents a key in Make. Keys are used to store sensitive information securely and can be used in apps without exposing the actual values.

    type Key = {
        id: number;
        name: string;
        packageName?: string | null;
        teamId?: number;
        theme?: string;
        typeName?: string;
    }
    Index

    Properties

    id: number

    Unique identifier of the key

    name: string

    Name of the key

    packageName?: string | null

    The app this key belongs to, if any

    teamId?: number

    ID of the team that owns the key

    theme?: string

    Theme color for the key in UI

    typeName?: string

    Type of the key (e.g., 'api_key', 'oauth')