2026-06-29 15:31:20 +08:00
# LanQin Email API
2026-07-10 10:47:58 +08:00
LanQin Email exposes versioned integration APIs under `/api/open/v1` . The original `/api/open` paths remain compatibility aliases.
2026-06-29 15:31:20 +08:00
2026-07-10 10:47:58 +08:00
这些接口用于外部系统集成,稳定版本入口为 `/api/open/v1` 。原 `/api/open` 路径继续作为兼容别名。它们不是匿名公开接口,只接受 API Token,不接受浏览器登录 Session Cookie。
Machine-readable OpenAPI 3.1 contract: [`docs/openapi.json` ](./openapi.json ).
机器可读的 OpenAPI 3.1 契约见 [`docs/openapi.json` ](./openapi.json )。
2026-06-29 15:31:20 +08:00
2026-07-01 14:09:29 +08:00
## Base URL
All API endpoints are relative to your LanQin Email instance:
所有接口地址都相对于你的 LanQin Email 实例:
```
https://your-instance.example.com
```
## HTTP Status Codes
The API uses standard HTTP status codes:
接口使用标准 HTTP 状态码:
| Code 状态码 | Meaning 含义 |
|------|---------|
| `200 OK` | Request succeeded / 请求成功 |
| `201 Created` | Resource created successfully / 资源创建成功 |
| `400 Bad Request` | Invalid request parameters or validation error / 请求参数无效或校验失败 |
| `401 Unauthorized` | Missing or invalid API token / 缺少或无效的 API Token |
| `403 Forbidden` | Token lacks required permissions / Token 缺少所需权限 |
| `404 Not Found` | Resource does not exist / 资源不存在 |
2026-07-10 10:47:58 +08:00
| `409 Conflict` | Idempotency key conflict or concurrent status change / 幂等键冲突或状态并发变化 |
2026-07-01 14:09:29 +08:00
| `429 Too Many Requests` | Rate limit exceeded / 超过频率限制 |
| `500 Internal Server Error` | Server error / 服务器错误 |
Validation failures — including a duplicate domain name — return `400 Bad Request` , not `409` .
校验失败(包括域名重复)会返回 `400 Bad Request` ,而不是 `409` 。
## Error Responses
All API errors return JSON with this structure:
所有接口的错误都以如下 JSON 结构返回:
```json
{
"error" : "error message"
}
```
**Important** : The API uses `DisallowUnknownFields()` for JSON parsing. Sending fields not defined in the request schema will result in a `400 Bad Request` error.
**重要提示** :接口在解析 JSON 时启用了 `DisallowUnknownFields()` 。如果请求体中包含 schema 未定义的字段,将返回 `400 Bad Request` 错误。
Examples:
示例:
```json
{
"error" : "invalid token"
}
```
```json
{
"error" : "domain not found"
}
```
```json
{
"error" : "localPart is required"
}
```
2026-06-29 15:31:20 +08:00
## Authentication
Open API requests must use a Bearer API Token:
Open API 请求必须使用 Bearer API Token:
```http
Authorization: Bearer lq_xxx
```
Create tokens in **Profile / API Token** . The plain token is shown only once after creation, so store it securely and revoke it if it may have leaked.
请在 **个人中心 / API Token** 中创建 Token。明文 Token 只会在创建后显示一次,请安全保存;如果怀疑泄露,应立即撤销并重新创建。
Created token example:
创建后的 Token 示例:
```json
{
"token" : "lq_xxx"
}
```
Tokens created without a custom expiration default to 90 days. You can disable or revoke tokens from the same profile page.
如果没有自定义到期时间,Token 默认 90 天后过期。你可以在同一个个人中心页面中禁用或撤销 Token。
2026-07-10 10:47:58 +08:00
Each token has independent scopes. Scopes only reduce the permissions of the owning user; they never grant permissions the user does not already have. Existing tokens created before scope support are migrated to `*` for compatibility.
每个 Token 都有独立 scope。scope 只会收缩 Token 所属用户已有的权限,不会授予用户原本没有的权限。scope 功能上线前创建的 Token 会迁移为 `*` ,以保持兼容。
| Scope | Purpose |
|---|---|
| `domains:read` / `domains:write` | View or manage sending domains |
| `mailboxes:read` / `mailboxes:write` | View or manage mailboxes; password reset is a write operation |
| `messages:read` / `messages:send` / `messages:manage` | Read messages/status, send, or retry/cancel |
| `aliases:read` / `aliases:write` | View or manage aliases |
| `dns:read` / `dns:check` | View required records or execute DNS checks |
| `*` | Compatibility wildcard; avoid for new integrations |
2026-06-29 15:31:20 +08:00
## Permissions
2026-07-01 14:09:29 +08:00
All Open API endpoints require an API token with appropriate permissions and role requirements:
所有 Open API 接口都需要具备相应权限和角色的 API Token:
2026-07-10 10:47:58 +08:00
| Endpoint group | Required scope | Role |
|---|---|---|
| Domains | `domains:read` or `domains:write` | admin |
| Mailboxes | `mailboxes:read` or `mailboxes:write` | admin |
| DNS | `dns:read` or `dns:check` | admin |
| Aliases | `aliases:read` or `aliases:write` | admin |
| Send / status / messages | `messages:send` , `messages:read` , or `messages:manage` | user or admin |
2026-07-01 14:09:29 +08:00
**Notes:**
- Admin endpoints check for `requireAdminAccess` (role must be `admin` ).
- Mail sending/reading endpoints work for regular users but only for mailboxes they own.
- Users can only read messages from their own active mailboxes.
**说明:**
- 域名和邮箱管理接口会检查 `requireAdminAccess` (角色必须为 `admin` )。
- 发信/读信接口对普通用户也可用,但只能操作自己拥有的邮箱。
- 用户只能读取自己拥有的 active 邮箱中的邮件。
2026-06-29 15:31:20 +08:00
## Domains
### List domains
```http
2026-07-10 10:47:58 +08:00
GET /api/open/v1/domains
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
```
2026-07-01 14:09:29 +08:00
**Status:** `200 OK`
**Response:**
2026-06-29 15:31:20 +08:00
```json
{
"items" : [
{
"id" : "dom_xxx" ,
"name" : "example.com" ,
"status" : "active" ,
"dkimSelector" : "lanqin" ,
2026-07-01 14:09:29 +08:00
"dkimPublicKey" : "v=DKIM1; k=rsa; p=MIIBIjANBgkq..." ,
2026-06-29 15:31:20 +08:00
"dnsStatus" : "unchecked" ,
2026-07-01 14:09:29 +08:00
"dnsCheckedAt" : null ,
2026-06-29 15:31:20 +08:00
"createdAt" : "2026-06-29T00:00:00Z"
}
]
}
```
2026-07-01 14:09:29 +08:00
**Field descriptions:**
- `status` : `active` or `disabled`
- `dnsStatus` : `unchecked` (initial), `ok` (all DNS records verified), or `error` (verification failed)
- `dnsCheckedAt` : Timestamp of last DNS check (nullable)
- `dkimPublicKey` : Public key for DKIM signing (omitted in some contexts)
**字段说明:**
- `status` : `active` 或 `disabled`
- `dnsStatus` : `unchecked` (初始)、`ok` (所有 DNS 记录校验通过)或 `error` (校验失败)
- `dnsCheckedAt` :上次 DNS 检查的时间戳(可为 null)
- `dkimPublicKey` :用于 DKIM 签名的公钥(部分场景下会省略)
**Note:** This endpoint returns all domains without pagination.
**注意:** 该接口一次性返回所有域名,不分页。
2026-06-29 15:31:20 +08:00
### Create domain
```http
2026-07-10 10:47:58 +08:00
POST /api/open/v1/domains
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
Content-Type: application/json
{
"name": "example.com"
}
```
2026-07-01 14:09:29 +08:00
**Status:** `201 Created`
**Response:**
```json
{
"id" : "dom_xxx" ,
"name" : "example.com" ,
"status" : "active" ,
"dkimSelector" : "lanqin" ,
"dkimPublicKey" : "v=DKIM1; k=rsa; p=MIIBIjANBgkq..." ,
"dnsStatus" : "unchecked" ,
"dnsCheckedAt" : null ,
"createdAt" : "2026-06-29T00:00:00Z"
}
```
**Notes:**
- Domain name is automatically normalized to lowercase
- DKIM keys are generated automatically
- Initial `dnsStatus` is `unchecked`
**说明:**
- 域名会自动规范化为小写
- DKIM 密钥会自动生成
- 初始 `dnsStatus` 为 `unchecked`
2026-06-29 15:31:20 +08:00
### Get domain
```http
2026-07-10 10:47:58 +08:00
GET /api/open/v1/domains/{id}
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
```
2026-07-01 14:09:29 +08:00
**Status:** `200 OK` or `404 Not Found`
**Response:** Same as domain object in list response.
**响应:** 与列表接口中的 domain 对象结构相同。
2026-06-29 15:31:20 +08:00
### Update domain status
```http
2026-07-10 10:47:58 +08:00
POST /api/open/v1/domains/{id}
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
Content-Type: application/json
{
"status": "active"
}
```
2026-07-01 14:09:29 +08:00
**Status:** `200 OK` or `404 Not Found`
**Request body:**
- `status` : Must be `active` or `disabled`
**请求体:**
- `status` :必须为 `active` 或 `disabled`
**Response:** Updated domain object.
**响应:** 更新后的 domain 对象。
**Note:** This endpoint uses `POST` (not `PATCH` /`PUT` ) for simplicity in client implementations.
**注意:** 该接口使用 `POST` (而非 `PATCH` /`PUT` ),以简化客户端实现。
2026-06-29 15:31:20 +08:00
### Delete domain
```http
2026-07-10 10:47:58 +08:00
DELETE /api/open/v1/domains/{id}
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
```
2026-07-01 14:09:29 +08:00
**Status:** `200 OK` , `404 Not Found` , or `400 Bad Request`
**Response:**
```json
{
"ok" : true
}
```
**Error cases:**
- `400` : Domain still has mailboxes (must delete mailboxes first)
- `404` : Domain not found
**错误情况:**
- `400` :域名下仍有邮箱(需先删除邮箱)
- `404` :域名不存在
2026-06-29 15:31:20 +08:00
## Mailboxes
### List mailboxes
```http
2026-07-10 10:47:58 +08:00
GET /api/open/v1/mailboxes
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
```
2026-07-01 14:09:29 +08:00
**Status:** `200 OK`
**Response:**
```json
{
"items" : [
{
"id" : "mbx_xxx" ,
"userId" : "usr_xxx" ,
"userEmail" : "alice@example.com" ,
"domainId" : "dom_xxx" ,
"localPart" : "alice" ,
"address" : "alice@example.com" ,
"displayName" : "Alice" ,
"quotaMb" : 1024 ,
"status" : "active" ,
"createdAt" : "2026-06-29T00:00:00Z"
}
]
}
```
**Note:** This endpoint returns all mailboxes without pagination.
**注意:** 该接口一次性返回所有邮箱,不分页。
2026-06-29 15:31:20 +08:00
### Create mailbox
```http
2026-07-10 10:47:58 +08:00
POST /api/open/v1/mailboxes
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
Content-Type: application/json
{
"domainId": "dom_xxx",
"localPart": "alice",
"displayName": "Alice",
"password": "Password123!",
"quotaMb": 1024,
"ownerEmail": "alice@example.com"
}
```
2026-07-01 14:09:29 +08:00
**Status:** `201 Created`
**Request fields:**
| Field 字段 | Required 必填 | Description 说明 |
|-------|----------|-------------|
| `domainId` | Yes | ID of an existing domain / 已存在域名的 ID |
| `localPart` | Yes | Local part of the address. Normalized to lowercase; only `a-z 0-9 . _ % + -` are kept, other characters stripped / 地址本地部分。会规范化为小写,仅保留 `a-z 0-9 . _ % + -` ,其余字符会被移除 |
| `password` | Yes | At least 8 characters. Used as the mailbox password / 至少 8 位,用作邮箱密码 |
| `displayName` | No | Defaults to the mailbox address if omitted / 省略时默认使用邮箱地址 |
| `quotaMb` | No | Mailbox quota in MB / 邮箱配额(MB) |
| `ownerEmail` | No | Owner's email. See owner resolution below / 拥有者邮箱,见下方拥有者解析规则 |
| `userId` | No | Bind to an existing user by ID. Takes precedence over `ownerEmail` / 绑定到已有用户的 ID,优先级高于 `ownerEmail` |
2026-06-29 15:31:20 +08:00
2026-07-01 14:09:29 +08:00
**Owner resolution:**
- If `userId` is provided, the mailbox is bound to that existing user (must be an active user).
- Otherwise, if `ownerEmail` is provided, LanQin Email looks up an active user with that email.
- If `ownerEmail` is omitted, the mailbox address is used as the owner email.
- If no active user with that email exists, a new user is created automatically.
**拥有者解析规则:**
- 如果传了 `userId` ,邮箱会绑定到该已有用户(必须是启用状态的用户)。
- 否则,如果传了 `ownerEmail` ,系统会查找该邮箱对应的启用用户。
- 如果省略 `ownerEmail` ,则使用邮箱地址作为拥有者邮箱。
- 如果不存在对应的启用用户,系统会自动创建一个新用户。
**Response:** Created mailbox object (same shape as list response).
**响应:** 创建后的 mailbox 对象(结构与列表接口相同)。
2026-06-29 15:31:20 +08:00
### Get mailbox
```http
2026-07-10 10:47:58 +08:00
GET /api/open/v1/mailboxes/{id}
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
```
2026-07-01 14:09:29 +08:00
**Status:** `200 OK` or `404 Not Found`
**Response:** Mailbox object (same shape as list response).
**响应:** mailbox 对象(结构与列表接口相同)。
2026-06-29 15:31:20 +08:00
### Update mailbox
```http
2026-07-10 10:47:58 +08:00
POST /api/open/v1/mailboxes/{id}
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
Content-Type: application/json
{
"displayName": "Alice Work",
"quotaMb": 2048,
"status": "active",
"userId": "usr_xxx"
}
```
2026-07-01 14:09:29 +08:00
**Status:** `200 OK` or `404 Not Found`
All fields are optional. Omitted (or empty / non-positive) fields keep their current value. `status` can be `active` or `disabled` . When `userId` is provided, the target user must exist and be active.
所有字段均可选。省略(或为空 / 非正数)的字段会保留原值。`status` 可为 `active` 或 `disabled` 。如果传了 `userId` ,目标用户必须存在且处于启用状态。
**Response:** Updated mailbox object.
**响应:** 更新后的 mailbox 对象。
2026-06-29 15:31:20 +08:00
### Delete mailbox
```http
2026-07-10 10:47:58 +08:00
DELETE /api/open/v1/mailboxes/{id}
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
```
2026-07-01 14:09:29 +08:00
**Status:** `200 OK` , `404 Not Found` , or `400 Bad Request`
**Response:**
```json
{
"ok" : true
}
```
**Notes:**
- Deleting a mailbox also deletes all of its messages.
- If the token owner is deleting their own mailbox, it cannot be their last remaining mailbox (returns `400` ).
**说明:**
- 删除邮箱会同时删除该邮箱下的所有邮件。
- 如果 Token 拥有者删除的是自己的邮箱,则不能删除最后一个邮箱(会返回 `400` )。
2026-06-29 15:31:20 +08:00
## Send Mail
```http
2026-07-10 10:47:58 +08:00
POST /api/open/v1/send
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
2026-07-10 10:47:58 +08:00
Idempotency-Key: invoice-2026-0001
2026-06-29 15:31:20 +08:00
Content-Type: application/json
{
"mailboxId": "mbx_xxx",
"to": ["bob@example.com"],
"cc": [],
"bcc": [],
"subject": "Hello",
"text": "Plain text body",
2026-07-01 14:09:29 +08:00
"html": "<p>HTML body</p>",
"attachments": [
{
"filename": "report.pdf",
"contentType": "application/pdf",
"contentBase64": "JVBERi0xLjQK..."
}
]
2026-06-29 15:31:20 +08:00
}
```
2026-07-01 14:09:29 +08:00
**Status:** `201 Created`
**Request fields:**
| Field 字段 | Required 必填 | Description 说明 |
|-------|----------|-------------|
| `mailboxId` | Yes | Sending mailbox ID (must be owned by the token user) / 发信邮箱 ID(必须属于 Token 拥有者) |
| `to` | Yes | Recipient addresses (at least one recipient across to/cc/bcc) / 收件人地址(to/cc/bcc 至少需有一个收件人) |
| `cc` | No | CC addresses / 抄送地址 |
| `bcc` | No | BCC addresses / 密送地址 |
| `subject` | No | Message subject / 邮件主题 |
| `text` | No | Plain text body / 纯文本正文 |
| `html` | No | HTML body / HTML 正文 |
| `attachments` | No | List of attachments (see below) / 附件列表(见下方) |
**Attachment fields:**
| Field 字段 | Description 说明 |
|-------|-------------|
| `filename` | Attachment file name / 附件文件名 |
| `contentType` | MIME type, e.g. `application/pdf` / MIME 类型,如 `application/pdf` |
| `contentBase64` | Base64-encoded file content / Base64 编码的文件内容 |
Total attachment size is limited by the sender's permission group (`maxAttachmentMb` , default 25 MB). Exceeding it returns `400` .
附件总大小受发信人所在权限组限制(`maxAttachmentMb` ,默认 25 MB)。超出会返回 `400` 。
**Response:**
2026-06-29 15:31:20 +08:00
```json
{
"id" : "mail_xxx" ,
"queueId" : "snd_xxx" ,
"status" : "queued" ,
"messageId" : "mail_xxx" ,
"rfcMessageId" : "<msg_xxx@example.com>" ,
"mailboxId" : "mbx_xxx" ,
"mailboxAddress" : "alice@example.com" ,
"subject" : "Hello" ,
2026-07-01 14:09:29 +08:00
"recipients" : [ "bob@example.com" ],
"attemptCount" : 0 ,
"maxAttempts" : 5 ,
2026-06-29 15:31:20 +08:00
"createdAt" : "2026-06-29T00:00:00Z"
}
```
2026-07-01 14:09:29 +08:00
**Response fields:**
| Field 字段 | Description 说明 |
|-------|-------------|
2026-07-10 10:47:58 +08:00
| `id` | Send identifier; use it with `GET /api/open/v1/send/{id}` / 发信标识,可配合 `GET /api/open/v1/send/{id}` 使用 |
2026-07-01 14:09:29 +08:00
| `queueId` | SMTP queue item id. Omitted when the message was only `accepted` / SMTP 队列项 ID;仅 `accepted` 时不返回 |
| `status` | Delivery status, see values below / 投递状态,见下方取值 |
| `messageId` | Internal stored message id / 内部存储的消息 ID |
| `rfcMessageId` | RFC 5322 `Message-ID` header / RFC 5322 的 `Message-ID` 头 |
| `mailboxAddress` | Sending mailbox address / 发信邮箱地址 |
| `recipients` | Deduplicated recipients (to + cc + bcc) / 去重后的收件人(to + cc + bcc) |
| `attemptCount` / `maxAttempts` | Delivery attempt counters (queue only) / 投递尝试次数(仅队列项返回) |
| `nextAttemptAt` / `lastError` | Next retry time / last delivery error (present when applicable) / 下次重试时间 / 最近一次投递错误(在适用时返回) |
| `updatedAt` / `deliveredAt` | Update / delivery timestamps (present when applicable) / 更新 / 投递时间戳(在适用时返回) |
2026-06-29 15:31:20 +08:00
When SMTP delivery is not configured, the message can be stored as accepted without a queue item:
如果没有配置 SMTP 投递,邮件可能只会进入 `accepted` 状态,不会产生 `queueId` 。
2026-07-10 10:47:58 +08:00
`id` is always the stable stored send id (`mail_*` ). `queueId` is the queue item (`snd_*` ) and may be absent. A repeated request with the same `Idempotency-Key` and identical body returns the original send with `200` and `Idempotency-Replayed: true` ; reusing the key with a different body returns `409` . Keys are retained for 24 hours.
`id` 始终是稳定的发送邮件 ID( `mail_*` );`queueId` 是队列项 ID( `snd_*` ),可能不存在。相同 `Idempotency-Key` 与相同请求体重试时返回原发送结果、状态码 `200` ,并带 `Idempotency-Replayed: true` ;相同 key 配不同请求体返回 `409` 。key 保留 24 小时。
2026-06-29 15:31:20 +08:00
Current status values:
2026-07-01 14:09:29 +08:00
当前状态取值:
2026-06-29 15:31:20 +08:00
- `accepted` : message was accepted and stored, but no SMTP queue item exists.
- `queued` : queued for SMTP delivery.
- `sending` : currently being delivered.
2026-07-10 10:47:58 +08:00
- `relayed` : the configured upstream SMTP server accepted the message; this is not final recipient delivery.
2026-06-29 15:31:20 +08:00
- `failed` : delivery failed and may be retried.
- `canceled` : delivery was canceled.
2026-07-10 10:47:58 +08:00
- `delivered` , `bounced` , `complained` , `rejected` , `deferred` : final per-recipient provider/DSN event.
- `partial` : final events currently differ between recipients or only cover part of the recipient list.
2026-06-29 15:31:20 +08:00
2026-07-01 14:09:29 +08:00
<br>
- `accepted` :邮件已被接受并存储,但没有 SMTP 队列项。
- `queued` :已进入 SMTP 投递队列。
- `sending` :正在投递中。
2026-07-10 10:47:58 +08:00
- `relayed` :配置的上游 SMTP 已接受邮件,但这不代表最终收件成功。
2026-07-01 14:09:29 +08:00
- `failed` :投递失败,可能会重试。
- `canceled` :投递已取消。
2026-07-10 10:47:58 +08:00
- `delivered` 、`bounced` 、`complained` 、`rejected` 、`deferred` :每个收件人的最终供应商或 DSN 事件。
- `partial` :不同收件人的最终状态不同,或当前只收到了部分收件人的事件。
2026-07-01 14:09:29 +08:00
**Error cases:**
| Status 状态码 | Cause 原因 |
|--------|-------|
| `400` | No recipients / invalid MIME / attachment too large / 无收件人、MIME 无效或附件过大 |
| `403` | Sender address is not authorized / 发信地址未被授权 |
| `404` | Mailbox not found or not owned by the token user / 邮箱不存在或不属于 Token 拥有者 |
| `429` | SMTP send rate limit exceeded / 超过 SMTP 发信频率限制 |
| `507` | Mailbox quota exceeded / 邮箱配额已满 |
2026-07-10 10:47:58 +08:00
Final delivery events are exposed in `recipientStatuses` and through `GET /api/open/v1/send/{id}/events` .
2026-06-29 15:31:20 +08:00
2026-07-10 10:47:58 +08:00
最终投递事件会出现在 `recipientStatuses` ,完整时间线可通过 `GET /api/open/v1/send/{id}/events` 获取。
2026-06-29 15:31:20 +08:00
## Send Status
```http
2026-07-10 10:47:58 +08:00
GET /api/open/v1/send/{id}
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
```
2026-07-01 14:09:29 +08:00
**Status:** `200 OK` or `404 Not Found`
2026-07-10 10:47:58 +08:00
`id` can be the value returned by `POST /api/open/v1/send` . If a queue item exists, it can also be the queue id.
2026-06-29 15:31:20 +08:00
`id` 可以使用发信接口返回的 `id` ;如果存在队列项,也可以使用 `queueId` 。
2026-07-10 10:47:58 +08:00
**Response:** Same shape as the `POST /api/open/v1/send` response. Only messages belonging to the token user's mailboxes are returned; otherwise `404` .
2026-07-01 14:09:29 +08:00
2026-07-10 10:47:58 +08:00
**响应:** 结构与 `POST /api/open/v1/send` 的响应相同。只会返回属于 Token 拥有者邮箱的邮件,否则返回 `404` 。
2026-07-01 14:09:29 +08:00
2026-06-29 15:31:20 +08:00
## Received Messages
```http
2026-07-10 10:47:58 +08:00
GET /api/open/v1/mailboxes/{id}/messages?folder=Inbox&limit=30&cursor=opaque&q=keyword
2026-06-29 15:31:20 +08:00
Authorization: Bearer lq_xxx
```
2026-07-01 14:09:29 +08:00
**Status:** `200 OK` or `404 Not Found`
2026-06-29 15:31:20 +08:00
Query parameters:
2026-07-01 14:09:29 +08:00
查询参数:
2026-06-29 15:31:20 +08:00
- `folder` : folder name. Defaults to `Inbox` ; use `all` for all folders.
2026-07-01 14:09:29 +08:00
- `limit` : page size, defaults to `30` , maximum `100` .
2026-07-10 10:47:58 +08:00
- `cursor` : opaque stable cursor. Pass back `nextCursor` unchanged. Numeric offsets remain accepted for compatibility.
2026-07-01 14:09:29 +08:00
- `q` : optional search keyword. Matches subject, from, to, snippet, and body text.
<br>
- `folder` :文件夹名称。默认为 `Inbox` ;使用 `all` 表示所有文件夹。
- `limit` :每页数量,默认 `30` ,最大 `100` 。
- `cursor` :数字偏移量。把上一次响应中的 `nextCursor` 传回即可获取下一页。
- `q` :可选搜索关键词。会匹配主题、发件人、收件人、摘要和正文。
2026-06-29 15:31:20 +08:00
Response:
2026-07-01 14:09:29 +08:00
响应:
2026-06-29 15:31:20 +08:00
```json
{
"items" : [
{
"id" : "mail_xxx" ,
"mailboxId" : "mbx_xxx" ,
"folder" : "Inbox" ,
"messageId" : "<message@example.com>" ,
"subject" : "Hello" ,
"from" : "sender@example.com" ,
"to" : [ "alice@example.com" ],
"receivedAt" : "2026-06-29T00:00:00Z" ,
"snippet" : "Preview text" ,
"isRead" : false ,
"hasAttachments" : false
}
],
"nextCursor" : ""
}
```
2026-07-01 14:09:29 +08:00
`nextCursor` is empty when there are no more pages. Otherwise it contains the offset to pass as `cursor` for the next request.
2026-07-10 10:47:58 +08:00
当没有更多分页时,`nextCursor` 为空字符串;否则应将它原样作为下一次请求的 `cursor` 传入。
2026-07-01 14:09:29 +08:00
2026-07-10 10:47:58 +08:00
Users can only read messages from their own active mailboxes. Fetch message bodies and attachment metadata with `GET /api/open/v1/messages/{id}` ; download an owned attachment with `GET /api/open/v1/attachments/{id}` .
2026-06-29 15:31:20 +08:00
用户只能读取自己拥有的 active 邮箱。
2026-07-10 10:47:58 +08:00
## Additional V1 Endpoints / 其他 V1 接口
- `GET /api/open/v1/send` : paginated send records.
- `GET /api/open/v1/send/{id}/events` : queue audit and final delivery events.
- `POST /api/open/v1/send/{id}/retry` : retry a failed queue item.
- `POST /api/open/v1/send/{id}/cancel` : cancel a queued or failed item.
- `POST /api/open/v1/mailboxes/{id}/password` : reset the owner user's password and all mailbox passwords owned by that user.
- `GET /api/open/v1/domains/{id}/dns-records` and `POST .../dns-check` : DNS configuration and check.
- `/api/open/v1/aliases` : alias CRUD.
Domain names and mailbox addresses are immutable. Renaming them requires a storage/identity migration and is intentionally not exposed as a normal update operation.
域名名称和邮箱地址不可直接修改。重命名需要迁移存储路径及身份信息,因此不作为普通更新操作开放。
## Delivery Event Webhook / 投递事件回调
Configure `LANQIN_DELIVERY_WEBHOOK_SECRET` , then post up to 100 events to `POST /api/open/v1/delivery-events` . This endpoint does not accept an API Token. Set the Unix timestamp in `X-LanQin-Timestamp` , compute `HMAC-SHA256(secret, timestamp + "." + rawBody)` , and send the lowercase hexadecimal digest as `X-LanQin-Signature: sha256=<digest>` . Timestamps outside five minutes are rejected. `(provider, event id)` is idempotent.
配置 `LANQIN_DELIVERY_WEBHOOK_SECRET` 后,可向 `POST /api/open/v1/delivery-events` 一次提交最多 100 条事件。该接口不接受 API Token。将 Unix 时间戳放入 `X-LanQin-Timestamp` ,计算 `HMAC-SHA256(secret, timestamp + "." + 原始请求体)` ,再以 `X-LanQin-Signature: sha256=<小写十六进制>` 发送。超过五分钟的时间戳会被拒绝;`(provider, event id)` 具备幂等性。
Accepted event statuses: `delivered` , `bounced` , `complained` , `rejected` , `deferred` . Every event must identify an existing send using `queueId` , `messageId` , or `rfcMessageId` , and its recipient must belong to that send.
## Outbound Status Webhook / 主动状态推送
Set `LANQIN_STATUS_WEBHOOK_URL` and `LANQIN_STATUS_WEBHOOK_SECRET` to receive status changes proactively. Events are persisted in a SQLite outbox before delivery. Non-2xx responses are retried with backoff up to 10 attempts. Delivered and retry-exhausted records are removed after 30 days.
设置 `LANQIN_STATUS_WEBHOOK_URL` 和 `LANQIN_STATUS_WEBHOOK_SECRET` 后,可主动接收状态变化。事件会先持久化到 SQLite outbox,非 2xx 响应会按退避策略重试,最多 10 次;已送达和重试耗尽的记录会在 30 天后清理。
Outbound requests include `X-LanQin-Webhook-Id` , `X-LanQin-Timestamp` , and `X-LanQin-Signature` . Signature calculation is the same HMAC-SHA256 construction used by the inbound delivery-event endpoint: `HMAC(secret, timestamp + "." + rawBody)` . Event types include `send.accepted` , `send.queued` , `send.retry` , `send.delivered` (upstream SMTP accepted), `send.failed` , `send.canceled` , and `delivery.<final-status>` .
出站请求包含 `X-LanQin-Webhook-Id` 、`X-LanQin-Timestamp` 和 `X-LanQin-Signature` 。签名算法与入站投递事件相同:`HMAC(secret, timestamp + "." + 原始请求体)` 。事件类型包括 `send.accepted` 、`send.queued` 、`send.retry` 、`send.delivered` (上游 SMTP 接受)、`send.failed` 、`send.canceled` 和 `delivery.<最终状态>` 。
The target must be a public HTTPS URL by default. Redirects, URL credentials, loopback, private, link-local, and unspecified addresses are rejected. `LANQIN_STATUS_WEBHOOK_ALLOW_PRIVATE_HOSTS=true` relaxes this for explicitly trusted private deployments and also permits HTTP.
目标地址默认必须是公网 HTTPS。重定向、URL 用户信息、loopback、私网、链路本地和未指定地址都会被拒绝。只有明确可信的私有部署才应设置 `LANQIN_STATUS_WEBHOOK_ALLOW_PRIVATE_HOSTS=true` ;开启后也允许 HTTP。