> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apowerb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Suggest Shared Mailboxes

> Best-effort discovery of shared mailboxes via /me/memberOf.

Microsoft Graph doesn't expose the list of mailboxes a user has delegate
access to without admin scopes. As a fallback, we list the user's
Microsoft 365 groups — they are mail-enabled and often represent shared
team mailboxes. The user can still add any address manually.



## OpenAPI

````yaml /api-reference/openapi.json get /api/integrations/microsoft/outlook/shared-mailboxes/suggestions
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/integrations/microsoft/outlook/shared-mailboxes/suggestions:
    get:
      tags:
        - integrations
      summary: Suggest Shared Mailboxes
      description: |-
        Best-effort discovery of shared mailboxes via /me/memberOf.

        Microsoft Graph doesn't expose the list of mailboxes a user has delegate
        access to without admin scopes. As a fallback, we list the user's
        Microsoft 365 groups — they are mail-enabled and often represent shared
        team mailboxes. The user can still add any address manually.
      operationId: >-
        suggest_shared_mailboxes_api_integrations_microsoft_outlook_shared_mailboxes_suggestions_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: >-
                  Response Suggest Shared Mailboxes Api Integrations Microsoft
                  Outlook Shared Mailboxes Suggestions Get
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [List Shared Mailboxes](/api-reference/integrations/list-shared-mailboxes.md)
- [Remove Shared Mailbox](/api-reference/integrations/remove-shared-mailbox.md)
- [Add Shared Mailbox](/api-reference/integrations/add-shared-mailbox.md)
- [Set Active Shared Mailbox](/api-reference/integrations/set-active-shared-mailbox.md)
- [Notifier Health Endpoint](/api-reference/health/notifier-health-endpoint.md)
