Claude Skill

Blumira Users

Blumira organization users: listing and filtering users, user roles, and looking up the user IDs required for finding assignment and access audits.

LLM Mart · 0 points · 0 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download wyre-ai-msp-claude-plugins-msp-claude-plugins_blumira_blumira_skills_users-147da75.zip · 1 KB
Part of wyre-ai/msp-claude-plugins — 48 skills

Install

skills CLI npx skills add https://github.com/WYRE-AI/msp-claude-plugins/tree/main/msp-claude-plugins/blumira/blumira/skills/users
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install wyre-ai-msp-claude-plugins@llmmart
Git git clone https://github.com/WYRE-AI/msp-claude-plugins.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole wyre-ai/msp-claude-plugins collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Blumira Users

Overview

Blumira users are organization members who can access the portal, investigate findings, and manage the environment. This skill covers user listing and lookup, primarily for finding assignment workflows.

Anti-triggers

  • The end user named in a finding — these are Blumira portal members (your analysts), not the M365 or AD account that triggered a detection. Look that account up in cipp-users or inforcer-identity-governance.
  • Creating, disabling, or offboarding anyone — Blumira's user surface is list-only; account lifecycle is cipp-users.
  • Users in a managed client account — blumira_users_list is an /org/* call; use blumira_msp_users_list in blumira-msp.

Key Concepts

User Roles

Users have roles that determine their permissions within the Blumira organization. The API exposes user identity and metadata for assignment and audit purposes.

User IDs

User IDs (UUIDs) are required when assigning findings to specific analysts. Use blumira_users_list to look up IDs.

API Patterns

List Users

blumira_users_list
  page_size=50

Response includes user ID, name, email, and role information.

Filter Users

blumira_users_list
  email.contains=@company.com

Common Workflows

Find User for Assignment

  1. blumira_users_list to get all users
  2. Identify the appropriate analyst by name or role
  3. Use their user_id with blumira_findings_assign

User Access Audit

  1. blumira_users_list with full pagination
  2. Review all users with access to the organization
  3. Cross-reference with HR/directory for offboarded users
  4. Report any discrepancies

Error Handling

Empty User List

Cause: Token may not have permission to list users Solution: Verify JWT token has appropriate scope for user management.

Best Practices

  • Cache user lists during triage sessions to avoid repeated API calls
  • Use email filtering to quickly find specific users
  • For MSP environments, use blumira_msp_users_list with account context
  • Document user-to-role mappings for escalation workflows

Related Skills

  • Findings — Assigning findings to users
  • API Patterns — Filtering and pagination
  • MSP — Per-account user management
Files (msp-claude-plugins)
  • SKILL.md 2.6 KB
    ---
    name: "Blumira Users"
    description: >
      Blumira organization users: listing and filtering users, user roles, and looking
      up the user IDs required for finding assignment and access audits.
    when_to_use: >-
      When you need a Blumira user ID or are auditing who has organization
      access. Use when: blumira user, user list, assign user, or user management.
    ---
    
    # Blumira Users
    
    ## Overview
    
    Blumira users are organization members who can access the portal, investigate findings, and manage the environment. This skill covers user listing and lookup, primarily for finding assignment workflows.
    
    ## Anti-triggers
    
    - **The end user named in a finding** — these are Blumira *portal*
      members (your analysts), not the M365 or AD account that triggered a
      detection. Look that account up in `cipp-users` or
      `inforcer-identity-governance`.
    - **Creating, disabling, or offboarding anyone** — Blumira's user
      surface is list-only; account lifecycle is `cipp-users`.
    - **Users in a managed client account** — `blumira_users_list` is an
      `/org/*` call; use `blumira_msp_users_list` in `blumira-msp`.
    
    ## Key Concepts
    
    ### User Roles
    
    Users have roles that determine their permissions within the Blumira organization. The API exposes user identity and metadata for assignment and audit purposes.
    
    ### User IDs
    
    User IDs (UUIDs) are required when assigning findings to specific analysts. Use `blumira_users_list` to look up IDs.
    
    ## API Patterns
    
    ### List Users
    
    ```
    blumira_users_list
      page_size=50
    ```
    
    Response includes user ID, name, email, and role information.
    
    ### Filter Users
    
    ```
    blumira_users_list
      email.contains=@company.com
    ```
    
    ## Common Workflows
    
    ### Find User for Assignment
    
    1. `blumira_users_list` to get all users
    2. Identify the appropriate analyst by name or role
    3. Use their `user_id` with `blumira_findings_assign`
    
    ### User Access Audit
    
    1. `blumira_users_list` with full pagination
    2. Review all users with access to the organization
    3. Cross-reference with HR/directory for offboarded users
    4. Report any discrepancies
    
    ## Error Handling
    
    ### Empty User List
    
    **Cause:** Token may not have permission to list users
    **Solution:** Verify JWT token has appropriate scope for user management.
    
    ## Best Practices
    
    - Cache user lists during triage sessions to avoid repeated API calls
    - Use email filtering to quickly find specific users
    - For MSP environments, use `blumira_msp_users_list` with account context
    - Document user-to-role mappings for escalation workflows
    
    ## Related Skills
    
    - [Findings](../findings/SKILL.md) — Assigning findings to users
    - [API Patterns](../api-patterns/SKILL.md) — Filtering and pagination
    - [MSP](../msp/SKILL.md) — Per-account user management
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related