@shortcut/client
    Preparing search index...

    Interface Member

    The Member the caller is authenticated as.

    interface Member {
        created_at?: string;
        disabled?: boolean;
        email_address?: string | null;
        entity_type?: "member";
        id?: string;
        mention_name?: string;
        name?: string;
        role?: string;
        teams?: NestedTeamSlimList;
        updated_at?: string;
        uri?: string;
    }
    Index

    Properties

    created_at?: string

    The time/date the Member was created.

    date-time

    disabled?: boolean

    True if the Member is disabled (no longer has access to the Workspace).

    email_address?: string | null

    The Member's email address, if the Member has one. Commonly null for bot/application users such as Korey.

    entity_type?: "member"

    The type of this entity.

    id?: string

    The unique ID of the Member.

    uuid

    mention_name?: string

    The Member's mention name, used to

    them in text fields.

    name?: string

    The full name of the Member.

    role?: string

    The role of the Member in the Workspace.

    A list of Teams that this Member belongs to.

    updated_at?: string

    The time/date the Member was last updated.

    date-time

    uri?: string

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

    2048

    ^https?://.+$