---
title: "List email accounts"
method: GET
path: "/v3/email-accounts"
tags: ["Email Accounts"]
---

# List email accounts

`GET /v3/email-accounts`

<small>_Requires the `channels:read` scope (or a broader one that includes it)._</small>

Returns a paginated list of email accounts.
By default returns all email accounts visible to the authenticated user, including team members' accounts in Public or Organization mode.
Use `my=true` to restrict results to only the authenticated user's own accounts.

## Query parameters

- `top` integer
- `skip` integer
- `my` boolean

## Response `200`

Paginated list of email accounts

- object
  - `items` object[]
    - `id` integer — Unique identifier for the email account
    - `ownerUserId` integer — ID of the user who owns this email account
    - `email` string, email — The email address
    - `senderName` string — The name displayed as sender in recipient inboxes
    - `emailAccountType` 'custom' | 'gmail' | 'outlook' | 'exchange' | 'exchangeOnPremise' — Provider type of the email account. Values: custom, gmail, outlook, exchange, exchangeOnPremise
    - `isDefault` boolean — Whether this is the user's default email account
    - `dailyLimit` integer — Maximum number of emails that can be sent per day
    - `connectionStatus` 'unknown' | 'connected' | 'disconnected' — Current connection status of the email account. Values: unknown, connected, disconnected
    - `tags` string[] — Tag names associated with this email account
  - `hasMore` boolean — Whether more items are available beyond the current page

## Other responses

- `400` — Invalid pagination parameters
- `401` — Unauthorized. The response body is empty; check the `WWW-Authenticate` header for the expected scheme.
- `403` — User lacks required feature scope to view email accounts
- `429` — Too Many Requests

---

[API](https://skmtc.net/reply/apis/reply-api.md) · [All operations](https://skmtc.net/reply/apis/reply-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/reply/reply-api/versions/1c3d32eaf95e/schema)
