Auth0 Node.js SDK - v6.4.0
    Preparing search index...

    Interface RoleGroup

    A group assigned to a role in the context of an organization.

    interface RoleGroup {
        id: string;
        name: string;
        external_id?: string;
        connection_id?: string;
        organization_id?: string | null;
        tenant_name?: string;
        description?: string | null;
        created_at?: string;
        updated_at?: string;
    }
    Index
    id: string

    Unique identifier for the group (service-generated).

    name: string

    Name of the group. Must be unique within its connection. Must contain between 1 and 128 printable ASCII characters.

    external_id?: string

    External identifier for the group, often used for SCIM synchronization. Max length of 256 characters.

    connection_id?: string

    Identifier for the connection this group belongs to (if a connection group).

    organization_id?: string | null

    Identifier for the organization this group belongs to (if an organization group).

    tenant_name?: string

    Identifier for the tenant this group belongs to.

    description?: string | null

    Description of the group.

    created_at?: string

    Timestamp of when the group was created.

    updated_at?: string

    Timestamp of when the group was last updated.