@shortcut/client
    Preparing search index...

    Interface Member

    Details about an individual user within the Workspace.

    interface Member {
        created_at?: null | string;
        created_without_invite: boolean;
        disabled: boolean;
        entity_type: string;
        global_id: string;
        group_ids: string[];
        id: string;
        profile: Profile;
        replaced_by?: string;
        role: string;
        state: "full" | "partial" | "disabled" | "imported";
        updated_at?: null | string;
    }
    Index

    Properties

    created_at?: null | string

    The time/date the Member was created.

    date-time

    created_without_invite: boolean

    Whether this member was created as a placeholder entity.

    disabled: boolean

    True/false boolean indicating whether the Member has been disabled within the Workspace.

    entity_type: string

    A string description of this resource.

    global_id: string
    group_ids: string[]

    The Member's group ids

    id: string

    The Member's ID in Shortcut.

    uuid

    profile: Profile

    A group of Member profile details.

    replaced_by?: string

    The id of the member that replaces this one when merged.

    uuid

    role: string

    The Member's role in the Workspace.

    state: "full" | "partial" | "disabled" | "imported"

    The user state, one of partial, full, disabled, or imported. A partial user is disabled, has no means to log in, and is not an import user. A full user is enabled and has a means to log in. A disabled user is disabled and has a means to log in. An import user is disabled, has no means to log in, and is marked as an import user.

    updated_at?: null | string

    The time/date the Member was last updated.

    date-time