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

# List the institution's accounts

> Returns id, nameFull, email, and disabledAt for every account in the authenticated institution. Paginated.



## OpenAPI

````yaml /scribe-api/openapi-institutional.json get /v1/institutional/accounts
openapi: 3.1.0
info:
  title: Scribe Public API
  description: >-
    External-facing REST API for integrating with the Telepatia platform.
    Authenticate with API keys, set consultation context, and look up scribe
    sessions.
  version: 0.1.0
servers:
  - url: https://scribe-api.telepatia.ai
    description: Production
security:
  - BearerAuth: []
paths:
  /v1/institutional/accounts:
    get:
      tags:
        - Institutional
        - Institutional
      summary: List the institution's accounts
      description: >-
        Returns id, nameFull, email, and disabledAt for every account in the
        authenticated institution. Paginated.
      operationId: api_institutional_accounts_listed_v1_institutional_accounts_get
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
            title: Page
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 20
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAccountsResponse'
              example:
                items:
                  - email: dr.juan@clinica.com
                    id: acc_a1b2c3d4e5f6g7h8
                    nameFull: Dr. Juan Pérez
                limit: 20
                page: 1
                total: 1
        '401':
          description: Unauthorized — missing or invalid API key.
          content:
            application/json:
              examples:
                authentication_required:
                  summary: Invalid or missing API key
                  value:
                    error:
                      type: authentication_error
                      code: authentication_required
                      message: Invalid API key.
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Service Unavailable — an external dependency is down.
          content:
            application/json:
              examples:
                service_unavailable:
                  summary: External service unavailable
                  value:
                    error:
                      type: api_error
                      code: service_unavailable
                      message: >-
                        Unable to generate verification code. Please try again
                        later.
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    ListAccountsResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/AccountSummary'
          type: array
          title: Items
          description: Page of accounts.
        total:
          type: integer
          title: Total
          description: Total accounts matching the request.
        page:
          type: integer
          title: Page
          description: Current page (1-based).
        limit:
          type: integer
          title: Limit
          description: Items per page.
      type: object
      required:
        - items
        - total
        - page
        - limit
      title: ListAccountsResponse
      description: Paginated list of institution accounts.
      examples:
        - items:
            - email: dr.juan@clinica.com
              id: acc_a1b2c3d4e5f6g7h8
              nameFull: Dr. Juan Pérez
          limit: 20
          page: 1
          total: 1
    ErrorResponse:
      description: Standardized error response envelope.
      properties:
        error:
          $ref: '#/components/schemas/ErrorDetail'
      required:
        - error
      title: ErrorResponse
      type: object
    AccountSummary:
      properties:
        id:
          type: string
          title: Id
          description: Account publicId (acc_*).
          examples:
            - acc_a1b2c3d4e5f6g7h8
        nameFull:
          anyOf:
            - type: string
            - type: 'null'
          title: Namefull
          description: Account full name.
          examples:
            - Dr. Juan Pérez
        email:
          type: string
          title: Email
          examples:
            - dr.juan@clinica.com
        disabledAt:
          anyOf:
            - type: string
            - type: 'null'
          title: Disabledat
          description: When the account was disabled; null means active.
          examples:
            - null
      type: object
      required:
        - id
        - email
      title: AccountSummary
      description: Summary of a single account in a list response.
    ErrorDetail:
      description: Error detail with machine-readable codes and human-readable message.
      properties:
        type:
          description: Broad error category for high-level handling.
          examples:
            - invalid_request_error
          title: Type
          type: string
        code:
          description: Machine-readable error code. Clients should switch on this value.
          examples:
            - parameter_invalid
          title: Code
          type: string
        message:
          description: Human-readable error message ending with a period.
          examples:
            - >-
              idCountry must be a valid country name, ISO alpha-2, or ISO
              alpha-3 code.
          title: Message
          type: string
        param:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          description: The request field that caused the error, if applicable.
          examples:
            - idCountry
          title: Param
        details:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          default: null
          description: Optional structured, machine-readable context for the error.
          examples:
            - pendingConsultations:
                - sessionId: abc123
                  url: https://...
          title: Details
      required:
        - type
        - code
        - message
      title: ErrorDetail
      type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API key passed as a Bearer token

````