@makehq/sdk
    Preparing search index...

    Type Alias Team

    Represents a team in Make. Teams are workspaces for organizing scenarios, users, and resources within an organization's account.

    type Team = {
        activeApps?: number;
        activeScenarios?: number;
        consumedOperations?: number;
        consumedTransfer?: number;
        id: number;
        isPaused?: boolean;
        name: string;
        operations?: number;
        operationsLimit?: number;
        organizationId: number;
        transfer?: number;
        transferLimit?: string;
    }
    Index

    Properties

    activeApps?: number

    Number of active apps in the team

    activeScenarios?: number

    Number of active scenarios in the team

    consumedOperations?: number

    Number of operations consumed

    consumedTransfer?: number

    Amount of data transfer consumed

    id: number

    Unique identifier of the team

    isPaused?: boolean

    Whether the team is paused

    name: string

    Name of the team

    operations?: number

    Total operations count

    operationsLimit?: number

    Maximum operations limit

    organizationId: number

    ID of the organization this team belongs to

    transfer?: number

    Total data transfer

    transferLimit?: string

    Maximum data transfer limit