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

# Get identity mailboxes

> Retrieve all configured mailboxes for a specific identity.

    > **Required scope:** `IDENTITIES_READ`
    >
    > **Rate limit:** 100 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json get /v1/identities/{identityId}/mailboxes
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/identities/{identityId}/mailboxes:
    get:
      tags:
        - Identities
      summary: Get identity mailboxes
      description: |-
        Retrieve all configured mailboxes for a specific identity.

            > **Required scope:** `IDENTITIES_READ`
            >
            > **Rate limit:** 100 requests per minute
      parameters:
        - schema:
            type: string
            description: The identity ID whose mailboxes should be returned.
          required: true
          description: The identity ID whose mailboxes should be returned.
          name: identityId
          in: path
      responses:
        '200':
          description: Successful response with the identity mailboxes
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      identityId:
                        type: number
                      mailboxes:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: number
                              description: Unique identifier for the mailbox
                            identityId:
                              type: number
                              description: Identity ID that owns the mailbox
                            email:
                              type: string
                              description: Mailbox email address
                            provider:
                              type: string
                              enum:
                                - google
                                - microsoft
                                - imap
                                - unknown
                              description: >-
                                Mailbox provider inferred from the configured
                                credentials
                            isPrimary:
                              type: boolean
                              description: >-
                                Whether this mailbox matches the identity
                                primary email field
                            emailCredentialsExpired:
                              type: boolean
                              description: >-
                                Whether the stored mailbox credentials are
                                expired
                            healthStatus:
                              type: string
                              enum:
                                - healthy
                                - credentials_expired
                                - missing_credentials
                              description: High-level mailbox credential health
                            warmup:
                              type: object
                              properties:
                                enabled:
                                  type: boolean
                                  description: >-
                                    Whether warmup is configured for this
                                    mailbox
                                mailboxId:
                                  type:
                                    - number
                                    - 'null'
                                  description: Warmup mailbox identifier when configured
                              required:
                                - enabled
                                - mailboxId
                          required:
                            - id
                            - identityId
                            - email
                            - provider
                            - isPrimary
                            - emailCredentialsExpired
                            - healthStatus
                            - warmup
                    required:
                      - identityId
                      - mailboxes
                required:
                  - status
                  - message
                  - data
        '404':
          description: Identity not found
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````