Save email tool connection¶
Saves the mail tool connection for the current workspace. The service tests the email connection first; the current connection credentials are not saved or rotated if the test fails. The password is only used for connection testing and saving and is not returned in the response.
POST https://moi.matrixorigin.cn/newmoi/workspaces/{workspace_id}/tools/mail/{provider}/connect
Before you call¶
Prepare a personal access token and target workspace ID that has access to the target workspace.
The example below uses:
$AI_STUDIO_API_KEY: The actual personal access token, passed through theX-API-KeyHeader.$WORKSPACE_ID: The workspace ID to save the connection, passed through theX-Workspace-IDHeader.
Request example¶
curl -X POST "https://moi.matrixorigin.cn/newmoi/workspaces/$WORKSPACE_ID/tools/mail/qq/connect" \
-H "X-API-Key: $AI_STUDIO_API_KEY" \
-H "X-Workspace-ID: $WORKSPACE_ID" \
-H 'Content-Type: application/json' \
-d '{
"email": "user@example.com",
"password": "<MAIL_PASSWORD>"
}'
Path parameters¶
Parameters |
Type |
Is it required |
Description |
|---|---|---|---|
|
string |
Yes |
The current workspace ID. |
|
string |
Yes |
Email provider: |
Request body¶
Field |
Type |
Is it required |
Description |
|---|---|---|---|
|
string |
Yes |
Email address. It must be a complete and valid email address and cannot contain leading or trailing spaces. |
|
string |
Yes |
Email password or authorization code. It cannot be empty and cannot contain leading or trailing blanks or newlines. |
Successful response¶
Returns 200 on success. The return value does not contain the password.
{
"code": 0,
"data": {
"tool_id": "moi.qq.mail",
"provider": "qq",
"email": "user@example.com",
"credential_ref": "cred_01",
"status": "connected",
"connected_at": "2026-01-02T15:04:05Z",
"requires_reconnect": false
}
}
The response fields are as follows.
Field |
Type |
Description |
|---|---|---|
|
integer |
|
|
string |
Corresponding provider’s built-in tool identifier. |
|
string |
The connected mail provider. |
|
string |
Saved email address. |
|
string |
A reference to a saved credential, not a password. |
|
string |
Connection status and whether reconnection is required. |
|
boolean |
Connection status and whether reconnection is required. |
|
string |
The time the connection was established, using RFC 3339 format. |
Error response¶
{
"code": 2,
"message": "<错误信息>"
}
Common HTTP errors¶
HTTP status code |
error code |
Common causes |
Recommended actions |
|---|---|---|---|
|
|
|
|
|
|
Lack of valid identity credentials. |
Check API Key. |
|
|
The current identity does not have permission to manage tool connections in the workspace. |
Check workspace authorization. |
|
|
The corresponding built-in email tool cannot be found in the current environment. |
Check the provider and confirm that the tool is available. |
|
|
The email connection service or authorization dependency is temporarily unavailable. |
Try again later. |
Follow-up operations¶
After saving, Query email tool connection confirms the connection configuration.