@makehq/sdk
    Preparing search index...

    Type Alias Template

    Represents a template in Make — a team's own saved scenario configuration.

    type Template = {
        approved: string | null;
        approvedId: number | null;
        approvedName: string | null;
        deleted?: boolean;
        description: string | null;
        id: number;
        name: string;
        organizationId?: number;
        public: boolean;
        publicUrl: string | null;
        published: string | null;
        publishedId: number | null;
        publishedName: string | null;
        requestedApproval: boolean;
        teamId: number;
        teamName?: string;
        usedApps: string[];
    }
    Index

    Properties

    approved: string | null

    ISO date-time the template was approved, or null

    approvedId: number | null

    ID of the user who approved the template, or null

    approvedName: string | null

    Name of the user who approved the template, or null

    deleted?: boolean

    Whether the template has been soft-deleted (admin-only column)

    description: string | null

    Human-readable description of the template, or null if not set

    id: number

    Unique identifier of the template

    name: string

    Name of the template

    organizationId?: number

    ID of the owning organization (admin-only column)

    public: boolean

    Whether the template has been submitted to the public gallery

    publicUrl: string | null

    URL slug in the public gallery once approved, or null

    published: string | null

    ISO date-time the template was published, or null

    publishedId: number | null

    ID of the user who published the template, or null

    publishedName: string | null

    Name of the user who published the template, or null

    requestedApproval: boolean

    Whether approval into the public gallery has been requested

    teamId: number

    ID of the team that owns the template

    teamName?: string

    Name of the owning team (admin-only column)

    usedApps: string[]

    List of app identifiers used in the template