@makehq/sdk
    Preparing search index...

    Type Alias ScenarioLabel

    Represents a scenario label in Make. Scenario labels are team-scoped tags with a many-to-many relationship to scenarios: a scenario can carry any number of labels and a label can be assigned to any number of the team's scenarios. Labels are independent of scenario folders.

    type ScenarioLabel = {
        colour: ScenarioLabelColour;
        created: string;
        createdBy: number | null;
        description: string | null;
        id: number;
        name: string;
        scope: "team";
        teamId: number | null;
        updated: string | null;
    }
    Index

    Properties

    Colour of the label

    created: string

    Timestamp when the label was created

    createdBy: number | null

    ID of the user who created the label, or null when unavailable

    description: string | null

    Optional human-readable description of the label, or null when not set

    id: number

    Unique identifier of the label

    name: string

    Name of the label

    scope: "team"

    Scope of the label. Currently always team

    teamId: number | null

    ID of the team that owns the label

    updated: string | null

    Timestamp when the label was last updated, or null when never updated