@shortcut/client
    Preparing search index...

    Interface Team

    interface Team {
        app_url?: string;
        archived?: boolean;
        card_aging_mode?: "off" | "gradual" | "immediate" | null;
        card_aging_threshold_days?: number | null;
        color?: string | null;
        color_key?:
            | "blue"
            | "purple"
            | "midnight-blue"
            | "orange"
            | "yellow-green"
            | "brass"
            | "gray"
            | "fuchsia"
            | "yellow"
            | "pink"
            | "sky-blue"
            | "green"
            | "red"
            | "black"
            | "slate"
            | "turquoise"
            | null;
        created_at?: string;
        default_workflow?: WorkflowSlim
        | null;
        description?: string;
        entity_type?: "team";
        id?: string;
        members?: NestedMemberSlimList;
        mention_name?: string | null;
        name?: string;
        updated_at?: string;
        uri?: string;
        workflows?: NestedWorkflowSlimList;
    }
    Index

    Properties

    app_url?: string

    The Shortcut application url for the Team.

    2048

    ^https?://.+$

    archived?: boolean

    True if the Team has been archived.

    card_aging_mode?: "off" | "gradual" | "immediate" | null

    The card aging mode for stories in this Team: "gradual" or "immediate". Null if card aging is off.

    card_aging_threshold_days?: number | null

    The number of days an in-progress Story can go without activity before it is considered stale.

    int64

    color?: string | null

    The hex color to be displayed with the Team (for example, "#ff0000").

    css-color

    1

    ^#[a-fA-F0-9]{6}$

    color_key?:
        | "blue"
        | "purple"
        | "midnight-blue"
        | "orange"
        | "yellow-green"
        | "brass"
        | "gray"
        | "fuchsia"
        | "yellow"
        | "pink"
        | "sky-blue"
        | "green"
        | "red"
        | "black"
        | "slate"
        | "turquoise"
        | null

    The color key to be displayed with the Team.

    created_at?: string

    The time/date the Team was created.

    date-time

    default_workflow?: WorkflowSlim | null

    The default Workflow for the Workspace the caller is authenticated against.

    description?: string

    The description of the Team.

    entity_type?: "team"

    The type of this entity.

    id?: string

    The unique ID of the Team.

    uuid

    The Members who followers of the Doc.

    mention_name?: string | null

    The Team's mention name, used to

    the team in text fields.

    name?: string

    The name of the Team.

    updated_at?: string

    The time/date the Team was last updated.

    date-time

    uri?: string

    A resolvable URI for the entity that will return the full representation.

    2048

    ^https?://.+$

    A list of Workflows associated with this Team.