Documentation Index
Fetch the complete documentation index at: https://docs.hybridbox.io/llms.txt
Use this file to discover all available pages before exploring further.
メールボックス
SMTP メールボックス、認証情報、メールボックスドメインを管理します。
例では A2A コードモードを使用します。MCP は execute ツールを通じて同じコードモードを公開します。
mailboxes.add
mailboxes.add(account_id: str, domain: str, first_name: str, last_name: str, local_part: str) -> Mailbox
メールボックス: mailboxes.add.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | mailbox.create | 認証必須 | はい |
| 実行モード | sync | 機能権限 | mailbox.create |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | POST /v1/public/accounts/{account_id}/mailboxes | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
domain | str | はい |
first_name | str | はい |
last_name | str | はい |
local_part | str | はい |
| フィールド | 型 | 必須 |
|---|
created_at | str | はい |
domain_id | str | はい |
domain_name | str | はい |
first_name | str | はい |
id | str | はい |
last_name | str | はい |
local_part | str | はい |
primary_email | str | はい |
quota | {"allowed": int, "used": int} | はい |
status | str | はい |
updated_at | str | はい |
aliases | [{"alias": str, "is_catch_all"?: bool}] | いいえ |
workspace_id | str | null | いいえ |
workspace_name | str | null | いいえ |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "mailboxes.add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", first_name=\"<string>\", last_name=\"<string>\", local_part=\"<string>\")"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": 123
},
"responses": [
{
"index": 0,
"function": "mailboxes.add",
"status": "completed",
"result": 123
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "mailboxes.add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", first_name=\"<string>\", last_name=\"<string>\", local_part=\"<string>\")"
}
}
}
レスポンス:{
"jsonrpc": "2.0",
"id": "example",
"result": {
"content": [
{
"type": "text",
"text": "{\n \"request_id\": \"example\",\n \"status\": \"completed\",\n \"result\": {\n \"last_value\": 123\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"mailboxes.add\",\n \"status\": \"completed\",\n \"result\": 123\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
mailboxes.aliases.create
mailboxes.aliases.create(account_id: str, mailbox: str, alias: str, is_catch_all?: bool) -> Mailbox
メールボックス: mailboxes.aliases.create.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | mailbox.alias.manage | 認証必須 | はい |
| 実行モード | sync | 機能権限 | mailbox.alias.manage |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | POST /v1/public/accounts/{account_id}/mailboxes/{mailbox}/aliases | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
mailbox | str | はい |
alias | str | はい |
is_catch_all | bool | いいえ |
| フィールド | 型 | 必須 |
|---|
alias | str | はい |
is_catch_all | bool | いいえ |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "mailboxes.aliases.create(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", mailbox=\"<string>\", alias=\"<string>\", is_catch_all=true)"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": true
},
"responses": [
{
"index": 0,
"function": "mailboxes.aliases.create",
"status": "completed",
"result": true
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "mailboxes.aliases.create(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", mailbox=\"<string>\", alias=\"<string>\", is_catch_all=true)"
}
}
}
レスポンス:{
"jsonrpc": "2.0",
"id": "example",
"result": {
"content": [
{
"type": "text",
"text": "{\n \"request_id\": \"example\",\n \"status\": \"completed\",\n \"result\": {\n \"last_value\": true\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"mailboxes.aliases.create\",\n \"status\": \"completed\",\n \"result\": true\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
mailboxes.aliases.delete
mailboxes.aliases.delete(account_id: str, alias: str, mailbox: str) -> {}
メールボックス: mailboxes.aliases.delete.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | mailbox.alias.manage | 認証必須 | はい |
| 実行モード | sync | 機能権限 | mailbox.alias.manage |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | DELETE /v1/public/accounts/{account_id}/mailboxes/{mailbox}/aliases/{alias} | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
alias | str | はい |
mailbox | str | はい |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "mailboxes.aliases.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", alias=\"<string>\", mailbox=\"<string>\")"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": {}
},
"responses": [
{
"index": 0,
"function": "mailboxes.aliases.delete",
"status": "completed",
"result": {}
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "mailboxes.aliases.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", alias=\"<string>\", mailbox=\"<string>\")"
}
}
}
レスポンス:{
"jsonrpc": "2.0",
"id": "example",
"result": {
"content": [
{
"type": "text",
"text": "{\n \"request_id\": \"example\",\n \"status\": \"completed\",\n \"result\": {\n \"last_value\": {}\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"mailboxes.aliases.delete\",\n \"status\": \"completed\",\n \"result\": {}\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
mailboxes.bulk_add
mailboxes.bulk_add(account_id: str, domain: str, items: [{"first_name": str, "last_name": str, "local_part": str}]) -> Mailbox
メールボックス: mailboxes.bulk_add.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | mailbox.create | 認証必須 | はい |
| 実行モード | sync | 機能権限 | mailbox.create |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | POST /v1/public/accounts/{account_id}/mailboxes/bulk | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
domain | str | はい |
items | [{"first_name": str, "last_name": str, "local_part": str}] | はい |
| フィールド | 型 | 必須 |
|---|
created | [{"index": int, "mailbox": {"created_at": str, "domain_id": str, "domain_name": str, "first_name": str, "id": str, "last_name": str, "local_part": str, "primary_email": str, "quota": {"allowed": int, "used": int}, "status": str, "updated_at": str, "aliases"?: [{"alias": str, "is_catch_all"?: bool}], "workspace_id"?: str | null, "workspace_name"?: str | null}}] | はい |
failed | [{"code": str, "index": int, "message": str}] | はい |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "mailboxes.bulk_add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", items=\"<string>\")"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": 123
},
"responses": [
{
"index": 0,
"function": "mailboxes.bulk_add",
"status": "completed",
"result": 123
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "mailboxes.bulk_add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", items=\"<string>\")"
}
}
}
レスポンス:{
"jsonrpc": "2.0",
"id": "example",
"result": {
"content": [
{
"type": "text",
"text": "{\n \"request_id\": \"example\",\n \"status\": \"completed\",\n \"result\": {\n \"last_value\": 123\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"mailboxes.bulk_add\",\n \"status\": \"completed\",\n \"result\": 123\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
mailboxes.get
mailboxes.get(account_id: str, mailbox: str) -> Mailbox
メールボックス: mailboxes.get.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | mailbox.view | 認証必須 | はい |
| 実行モード | sync | 機能権限 | mailbox.view |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | GET /v1/public/accounts/{account_id}/mailboxes/{mailbox} | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
mailbox | str | はい |
| フィールド | 型 | 必須 |
|---|
created_at | str | はい |
domain_id | str | はい |
domain_name | str | はい |
first_name | str | はい |
id | str | はい |
last_name | str | はい |
local_part | str | はい |
primary_email | str | はい |
quota | {"allowed": int, "used": int} | はい |
status | str | はい |
updated_at | str | はい |
aliases | [{"alias": str, "is_catch_all"?: bool}] | いいえ |
workspace_id | str | null | いいえ |
workspace_name | str | null | いいえ |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "mailboxes.get(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", mailbox=\"<string>\")"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": 123
},
"responses": [
{
"index": 0,
"function": "mailboxes.get",
"status": "completed",
"result": 123
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "mailboxes.get(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", mailbox=\"<string>\")"
}
}
}
レスポンス:{
"jsonrpc": "2.0",
"id": "example",
"result": {
"content": [
{
"type": "text",
"text": "{\n \"request_id\": \"example\",\n \"status\": \"completed\",\n \"result\": {\n \"last_value\": 123\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"mailboxes.get\",\n \"status\": \"completed\",\n \"result\": 123\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
mailboxes.list
mailboxes.list(account_id: str, domain?: str | null, page?: int, page_size?: int, search?: str | null, workspace_id?: str | null) -> Page[Mailbox]
メールボックス: mailboxes.list.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | mailbox.view | 認証必須 | はい |
| 実行モード | sync | 機能権限 | mailbox.view |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | GET /v1/public/accounts/{account_id}/mailboxes | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
domain | str | null | いいえ |
page | int | いいえ |
page_size | int | いいえ |
search | str | null | いいえ |
workspace_id | str | null | いいえ |
| フィールド | 型 | 必須 |
|---|
items | [{"created_at": str, "domain_id": str, "domain_name": str, "first_name": str, "id": str, "last_name": str, "local_part": str, "primary_email": str, "quota": {"allowed": int, "used": int}, "status": str, "updated_at": str, "aliases"?: [{"alias": str, "is_catch_all"?: bool}], "workspace_id"?: str | null, "workspace_name"?: str | null}] | はい |
page | int | はい |
page_size | int | はい |
total | int | はい |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "mailboxes.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", page=123, page_size=123, search=\"<string>\", workspace_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": 123
},
"responses": [
{
"index": 0,
"function": "mailboxes.list",
"status": "completed",
"result": 123
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "mailboxes.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", page=123, page_size=123, search=\"<string>\", workspace_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
}
}
レスポンス:{
"jsonrpc": "2.0",
"id": "example",
"result": {
"content": [
{
"type": "text",
"text": "{\n \"request_id\": \"example\",\n \"status\": \"completed\",\n \"result\": {\n \"last_value\": 123\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"mailboxes.list\",\n \"status\": \"completed\",\n \"result\": 123\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
mailboxes.reveal_credentials
mailboxes.reveal_credentials(account_id: str, mailbox: str) -> Mailbox
メールボックス: mailboxes.reveal_credentials.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | mailbox.credential.reveal | 認証必須 | はい |
| 実行モード | sync | 機能権限 | mailbox.credential.reveal |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | POST /v1/public/accounts/{account_id}/mailboxes/{mailbox}/reveal-credentials | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
mailbox | str | はい |
| フィールド | 型 | 必須 |
|---|
password | str | はい |
username | str | はい |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "mailboxes.reveal_credentials(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", mailbox=\"<string>\")"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": {
"password": "<string>",
"username": "<string>"
}
},
"responses": [
{
"index": 0,
"function": "mailboxes.reveal_credentials",
"status": "completed",
"result": {
"password": "<string>",
"username": "<string>"
}
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "mailboxes.reveal_credentials(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", mailbox=\"<string>\")"
}
}
}
レスポンス:{
"jsonrpc": "2.0",
"id": "example",
"result": {
"content": [
{
"type": "text",
"text": "{\n \"request_id\": \"example\",\n \"status\": \"completed\",\n \"result\": {\n \"last_value\": {\n \"password\": \"<string>\",\n \"username\": \"<string>\"\n }\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"mailboxes.reveal_credentials\",\n \"status\": \"completed\",\n \"result\": {\n \"password\": \"<string>\",\n \"username\": \"<string>\"\n }\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
mailboxes.update
mailboxes.update(account_id: str, mailbox: str, first_name?: str | null, last_name?: str | null) -> Mailbox
メールボックス: mailboxes.update.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | mailbox.update | 認証必須 | はい |
| 実行モード | sync | 機能権限 | mailbox.update |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | PATCH /v1/public/accounts/{account_id}/mailboxes/{mailbox} | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
mailbox | str | はい |
first_name | str | null | いいえ |
last_name | str | null | いいえ |
| フィールド | 型 | 必須 |
|---|
created_at | str | はい |
domain_id | str | はい |
domain_name | str | はい |
first_name | str | はい |
id | str | はい |
last_name | str | はい |
local_part | str | はい |
primary_email | str | はい |
quota | {"allowed": int, "used": int} | はい |
status | str | はい |
updated_at | str | はい |
aliases | [{"alias": str, "is_catch_all"?: bool}] | いいえ |
workspace_id | str | null | いいえ |
workspace_name | str | null | いいえ |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "mailboxes.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", mailbox=\"<string>\", first_name=\"<string>\", last_name=\"<string>\")"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": 123
},
"responses": [
{
"index": 0,
"function": "mailboxes.update",
"status": "completed",
"result": 123
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "mailboxes.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", mailbox=\"<string>\", first_name=\"<string>\", last_name=\"<string>\")"
}
}
}
レスポンス:{
"jsonrpc": "2.0",
"id": "example",
"result": {
"content": [
{
"type": "text",
"text": "{\n \"request_id\": \"example\",\n \"status\": \"completed\",\n \"result\": {\n \"last_value\": 123\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"mailboxes.update\",\n \"status\": \"completed\",\n \"result\": 123\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}