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

# List Email Providers

> List the company's Amazon SES connections, most recently updated first. SendGrid/Resend are managed under Company Integrations, not here.



## OpenAPI

````yaml GET /email/providers/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /email/providers/:
    get:
      tags:
        - email
      summary: List Email Provider Connections
      description: >-
        List the company's Amazon SES connections, most recently updated first.
        SendGrid/Resend are managed under Company Integrations, not here.
      operationId: email_providers_list
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EmailProviderConnection'
          description: ''
      security:
        - jwtAuth: []
        - {}
components:
  schemas:
    EmailProviderConnection:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        provider:
          $ref: '#/components/schemas/EmailProviderConnectionProviderEnum'
        name:
          type: string
          maxLength: 128
        status:
          $ref: '#/components/schemas/EmailProviderConnectionStatusEnum'
        auth_config: {}
        metadata: {}
        test_result: {}
        last_verified_at:
          type: string
          format: date-time
          nullable: true
        is_deleted:
          type: boolean
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
          readOnly: true
        company:
          type: string
          format: uuid
      required:
        - company
        - id
        - name
        - provider
        - updated_at
    EmailProviderConnectionProviderEnum:
      enum:
        - sendgrid
        - resend
        - ses
      type: string
      description: |-
        * `sendgrid` - SendGrid
        * `resend` - Resend
        * `ses` - Amazon SES
    EmailProviderConnectionStatusEnum:
      enum:
        - pending
        - active
        - error
        - disconnected
      type: string
      description: |-
        * `pending` - Pending
        * `active` - Active
        * `error` - Error
        * `disconnected` - Disconnected
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````