@shortcut/client
    Preparing search index...

    Interface Profile

    A group of Member profile details.

    interface Profile {
        deactivated: boolean;
        display_icon: null | Icon;
        email_address?: null | string;
        entity_type: string;
        gravatar_hash?: null | string;
        id: string;
        is_agent?: boolean;
        is_owner: boolean;
        mention_name: string;
        name?: null | string;
        two_factor_auth_activated?: boolean;
    }
    Index

    Properties

    deactivated: boolean

    A true/false boolean indicating whether the Member has been deactivated within Shortcut.

    display_icon: null | Icon

    Icons are used to attach images to Groups, Workspaces, Members, and Loading screens in the Shortcut web application.

    email_address?: null | string

    The primary email address of the Member with the Organization.

    entity_type: string

    A string description of this resource.

    gravatar_hash?: null | string

    This is the gravatar hash associated with email_address.

    id: string

    The unique identifier of the profile.

    uuid

    is_agent?: boolean

    Whether this profile is an Agent/Bot user.

    is_owner: boolean

    A boolean indicating whether this profile is an owner at their associated organization.

    mention_name: string

    The Member's username within the Organization.

    name?: null | string

    The Member's name within the Organization.

    two_factor_auth_activated?: boolean

    If Two Factor Authentication is activated for this User.