> ## 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.

# Connection Status

> Check whether the current user has an active Outlook Mail connection.



## OpenAPI

````yaml /api-reference/openapi.json get /api/emailing/microsoft/status
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/emailing/microsoft/status:
    get:
      tags:
        - emailing
      summary: Connection Status
      description: Check whether the current user has an active Outlook Mail connection.
      operationId: connection_status_api_emailing_microsoft_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [Get Status](/api-reference/rag/get-status.md)
- [Template Status](/api-reference/agents/template-status.md)
- [Get Agent Status](/api-reference/get-agent-status.md)
- [Text-to-SQL](/guides/text-to-sql.md)
- [RAG](/guides/rag.md)
