ドメイン
ドメイン、検証、DNS 状態、セットアップキー、ドメインワークスペースを管理します。 例では A2A コードモードを使用します。MCP はexecute ツールを通じて同じコードモードを公開します。
関数
domains.delete
domains.delete(account_id: str, domain: str) -> {}
domains.delete.
| プロパティ | 値 | プロパティ | 値 |
|---|---|---|---|
| 必要な権限 | domain.delete | 認証必須 | はい |
| 実行モード | sync | 機能権限 | domain.delete |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | DELETE /v1/public/accounts/{account_id}/domains/{domain} |
引数
引数
| 名前 | 型 | 必須 |
|---|---|---|
account_id | str | はい |
domain | str | はい |
戻り値
戻り値
| フィールド | 型 | 必須 |
|---|---|---|
result | {} | はい |
A2A の例
A2A の例
リクエスト:レスポンス:
{
"request_id": "example",
"session_id": "session_123",
"code": "domains.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\")"
}
{
"request_id": "example",
"status": "completed",
"result": {
"last_value": {}
},
"responses": [
{
"index": 0,
"function": "domains.delete",
"status": "completed",
"result": {}
}
],
"complexity_score": 1
}
MCP の例
MCP の例
リクエスト:レスポンス:
{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "domains.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\")"
}
}
}
{
"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\": \"domains.delete\",\n \"status\": \"completed\",\n \"result\": {}\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
domains.get
domains.get(account_id: str, domain: str) -> Domain
domains.get.
| プロパティ | 値 | プロパティ | 値 |
|---|---|---|---|
| 必要な権限 | domain.view | 認証必須 | はい |
| 実行モード | sync | 機能権限 | domain.view |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | GET /v1/public/accounts/{account_id}/domains/{domain} |
引数
引数
| 名前 | 型 | 必須 |
|---|---|---|
account_id | str | はい |
domain | str | はい |
戻り値
戻り値
| フィールド | 型 | 必須 |
|---|---|---|
id | str | はい |
name | str | はい |
outbound_routing_ready | bool | はい |
status | str | はい |
workspace_id | str | はい |
auto_renew | bool | いいえ |
created_at | str | null | いいえ |
dedicated_ip_id | str | null | いいえ |
dns_records | [{"id": int, "name": str, "ttl": int, "type": str, "value": str, "is_system_managed"?: bool, "priority"?: int | null}] | いいえ |
inbound_tenant_external_id | str | null | いいえ |
inbound_tenant_id | str | null | いいえ |
inbound_tenant_name | str | null | いいえ |
inbound_tenant_type | str | null | いいえ |
mailboxes | [{"active": bool, "email": str, "first_name": str, "id": str, "last_name": str}] | いいえ |
redirect_mode | "301" | "302" | "iframe" | null | いいえ |
redirect_url | str | null | いいえ |
tags | [{"id": str, "name": str}] | いいえ |
updated_at | str | null | いいえ |
A2A の例
A2A の例
リクエスト:レスポンス:
{
"request_id": "example",
"session_id": "session_123",
"code": "domains.get(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\")"
}
{
"request_id": "example",
"status": "completed",
"result": {
"last_value": true
},
"responses": [
{
"index": 0,
"function": "domains.get",
"status": "completed",
"result": true
}
],
"complexity_score": 1
}
MCP の例
MCP の例
リクエスト:レスポンス:
{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "domains.get(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\")"
}
}
}
{
"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\": \"domains.get\",\n \"status\": \"completed\",\n \"result\": true\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
domains.health
domains.health(account_id: str, domain: str, refresh?: bool) -> Domain
domains.health.
| プロパティ | 値 | プロパティ | 値 |
|---|---|---|---|
| 必要な権限 | domain.view | 認証必須 | はい |
| 実行モード | sync | 機能権限 | domain.view |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | GET /v1/public/accounts/{account_id}/domains/{domain}/health |
引数
引数
| 名前 | 型 | 必須 |
|---|---|---|
account_id | str | はい |
domain | str | はい |
refresh | bool | いいえ |
戻り値
戻り値
| フィールド | 型 | 必須 |
|---|---|---|
cache_ttl_seconds | int | はい |
cached | bool | はい |
checked_at | str | はい |
checks | {"dns": {"status": "healthy" | "warning" | "critical" | "unknown", "a"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null, "dkim"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null, "dmarc"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null, "error"?: str | null, "mx"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null, "ns"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null, "spf"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null}, "ports": {"status": "healthy" | "warning" | "critical" | "unknown", "error"?: str | null, "imap_143"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null, "imaps_993"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null, "smtp_25"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null, "submission_587"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null}, "ssl": {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null}, "web": {"status": "healthy" | "warning" | "critical" | "unknown", "error"?: str | null, "http_root"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null, "http_www"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null, "https_root"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null, "https_www"?: {"status": "healthy" | "warning" | "critical" | "unknown", "actual"?: [str] | null, "code"?: str | null, "days_remaining"?: int | null, "error"?: str | null, "expected"?: [str] | null, "expires_at"?: str | null, "issuer"?: str | null, "record"?: str | null, "records"?: [str] | null, "status_code"?: int | null} | null}} | はい |
domain_id | str | はい |
domain_name | str | はい |
summary_status | "healthy" | "warning" | "critical" | "unknown" | はい |
timings_ms | {} | はい |
A2A の例
A2A の例
リクエスト:レスポンス:
{
"request_id": "example",
"session_id": "session_123",
"code": "domains.health(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", refresh=true)"
}
{
"request_id": "example",
"status": "completed",
"result": {
"last_value": 123
},
"responses": [
{
"index": 0,
"function": "domains.health",
"status": "completed",
"result": 123
}
],
"complexity_score": 1
}
MCP の例
MCP の例
リクエスト:レスポンス:
{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "domains.health(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", refresh=true)"
}
}
}
{
"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\": \"domains.health\",\n \"status\": \"completed\",\n \"result\": 123\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
domains.list
domains.list(account_id: str, page?: int, page_size?: int, search?: str | null, workspace_id?: str | null) -> Page[Domain]
domains.list.
| プロパティ | 値 | プロパティ | 値 |
|---|---|---|---|
| 必要な権限 | domain.view | 認証必須 | はい |
| 実行モード | sync | 機能権限 | domain.view |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | GET /v1/public/accounts/{account_id}/domains |
引数
引数
| 名前 | 型 | 必須 |
|---|---|---|
account_id | str | はい |
page | int | いいえ |
page_size | int | いいえ |
search | str | null | いいえ |
workspace_id | str | null | いいえ |
戻り値
戻り値
| フィールド | 型 | 必須 |
|---|---|---|
items | [{"id": str, "name": str, "outbound_routing_ready": bool, "status": str, "workspace_id": str, "auto_renew"?: bool, "created_at"?: str | null, "dedicated_ip_id"?: str | null, "inbound_tenant_external_id"?: str | null, "inbound_tenant_id"?: str | null, "inbound_tenant_name"?: str | null, "inbound_tenant_type"?: str | null, "redirect_mode"?: "301" | "302" | "iframe" | null, "redirect_url"?: str | null, "tags"?: [{"id": str, "name": str}], "updated_at"?: str | null}] | はい |
page | int | はい |
page_size | int | はい |
total | int | はい |
A2A の例
A2A の例
リクエスト:レスポンス:
{
"request_id": "example",
"session_id": "session_123",
"code": "domains.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", page=123, page_size=123, search=\"<string>\", workspace_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
{
"request_id": "example",
"status": "completed",
"result": {
"last_value": true
},
"responses": [
{
"index": 0,
"function": "domains.list",
"status": "completed",
"result": true
}
],
"complexity_score": 1
}
MCP の例
MCP の例
リクエスト:レスポンス:
{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "domains.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", 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\": true\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"domains.list\",\n \"status\": \"completed\",\n \"result\": true\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
domains.move
domains.move(account_id: str, domain: str, target_workspace_id: str) -> Domain
domains.move.
| プロパティ | 値 | プロパティ | 値 |
|---|---|---|---|
| 必要な権限 | domain.move | 認証必須 | はい |
| 実行モード | sync | 機能権限 | domain.move |
| リソースタイプ | workspace | リソース ID フィールド | target_workspace_id |
| 公開 API ルート | POST /v1/public/accounts/{account_id}/domains/{domain}/move |
引数
引数
| 名前 | 型 | 必須 |
|---|---|---|
account_id | str | はい |
domain | str | はい |
target_workspace_id | str | はい |
戻り値
戻り値
| フィールド | 型 | 必須 |
|---|---|---|
account_id | str | はい |
domain_id | str | はい |
domain_name | str | はい |
from_workspace_id | str | はい |
reconciled | {"linked_records_changed"?: int} | はい |
to_workspace_id | str | はい |
status | str | いいえ |
A2A の例
A2A の例
リクエスト:レスポンス:
{
"request_id": "example",
"session_id": "session_123",
"code": "domains.move(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", target_workspace_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
{
"request_id": "example",
"status": "completed",
"result": {
"last_value": 123
},
"responses": [
{
"index": 0,
"function": "domains.move",
"status": "completed",
"result": 123
}
],
"complexity_score": 1
}
MCP の例
MCP の例
リクエスト:レスポンス:
{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "domains.move(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", target_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\": \"domains.move\",\n \"status\": \"completed\",\n \"result\": 123\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
domains.purchase
domains.purchase(account_id: str, contact_info: {"address_1": str, "city": str, "country": str, "email": str, "first_name": str, "last_name": str, "organization": str, "phone": str, "state": str, "zip": str}, domains: [str], workspace_id: str) -> Domain
domains.purchase.
| プロパティ | 値 | プロパティ | 値 |
|---|---|---|---|
| 必要な権限 | domain.purchase | 認証必須 | はい |
| 実行モード | sync | 機能権限 | domain.purchase |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | POST /v1/public/accounts/{account_id}/domains/purchase |
引数
引数
| 名前 | 型 | 必須 |
|---|---|---|
account_id | str | はい |
contact_info | {"address_1": str, "city": str, "country": str, "email": str, "first_name": str, "last_name": str, "organization": str, "phone": str, "state": str, "zip": str} | はい |
domains | [str] | はい |
workspace_id | str | はい |
戻り値
戻り値
| フィールド | 型 | 必須 |
|---|---|---|
results | [{"domain_name": str, "status": str, "error"?: str | null, "error_code"?: str | null, "id"?: str | null}] | はい |
currency | str | null | いいえ |
estimated_total | str | null | いいえ |
failed_count | int | いいえ |
payment_url | str | null | いいえ |
purchase_batch_id | str | null | いいえ |
successful_count | int | いいえ |
A2A の例
A2A の例
リクエスト:レスポンス:
{
"request_id": "example",
"session_id": "session_123",
"code": "domains.purchase(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", contact_info=\"<string>\", domains=\"example.com\", workspace_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
{
"request_id": "example",
"status": "completed",
"result": {
"last_value": "<string>"
},
"responses": [
{
"index": 0,
"function": "domains.purchase",
"status": "completed",
"result": "<string>"
}
],
"complexity_score": 1
}
MCP の例
MCP の例
リクエスト:レスポンス:
{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "domains.purchase(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", contact_info=\"<string>\", domains=\"example.com\", 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\": \"<string>\"\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"domains.purchase\",\n \"status\": \"completed\",\n \"result\": \"<string>\"\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
domains.search
domains.search(account_id: str, domains: [str], workspace_id: str) -> list[Domain]
domains.search.
| プロパティ | 値 | プロパティ | 値 |
|---|---|---|---|
| 必要な権限 | domain.create | 認証必須 | はい |
| 実行モード | sync | 機能権限 | domain.create |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | GET /v1/public/accounts/{account_id}/domains/search |
引数
引数
| 名前 | 型 | 必須 |
|---|---|---|
account_id | str | はい |
domains | [str] | はい |
workspace_id | str | はい |
戻り値
戻り値
| フィールド | 型 | 必須 |
|---|---|---|
available | bool | はい |
domain | str | はい |
price | str | はい |
alternatives | [{"domain": str, "price": str, "available"?: bool, "currency"?: str, "is_premium"?: bool, "is_suggestion"?: bool}] | いいえ |
currency | str | いいえ |
is_premium | bool | いいえ |
is_suggestion | bool | いいえ |
unavailable_reason | str | null | いいえ |
A2A の例
A2A の例
リクエスト:レスポンス:
{
"request_id": "example",
"session_id": "session_123",
"code": "domains.search(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domains=\"example.com\", workspace_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
{
"request_id": "example",
"status": "completed",
"result": {
"last_value": true
},
"responses": [
{
"index": 0,
"function": "domains.search",
"status": "completed",
"result": true
}
],
"complexity_score": 1
}
MCP の例
MCP の例
リクエスト:レスポンス:
{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "domains.search(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domains=\"example.com\", 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\": true\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"domains.search\",\n \"status\": \"completed\",\n \"result\": true\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
domains.update
domains.update(account_id: str, domain: str, auto_renew?: bool | null, redirect_mode?: "301" | "302" | "iframe" | null, redirect_url?: str | null, workspace_id?: str | null) -> Domain
domains.update.
| プロパティ | 値 | プロパティ | 値 |
|---|---|---|---|
| 必要な権限 | domain.update | 認証必須 | はい |
| 実行モード | sync | 機能権限 | domain.update |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | PATCH /v1/public/accounts/{account_id}/domains/{domain} |
引数
引数
| 名前 | 型 | 必須 |
|---|---|---|
account_id | str | はい |
domain | str | はい |
auto_renew | bool | null | いいえ |
redirect_mode | "301" | "302" | "iframe" | null | いいえ |
redirect_url | str | null | いいえ |
workspace_id | str | null | いいえ |
戻り値
戻り値
| フィールド | 型 | 必須 |
|---|---|---|
auto_renew | bool | はい |
id | str | はい |
workspace_id | str | はい |
redirect_mode | "301" | "302" | "iframe" | null | いいえ |
redirect_url | str | null | いいえ |
A2A の例
A2A の例
リクエスト:レスポンス:
{
"request_id": "example",
"session_id": "session_123",
"code": "domains.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", auto_renew=true, redirect_mode=\"<string>\", redirect_url=\"<string>\", workspace_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
{
"request_id": "example",
"status": "completed",
"result": {
"last_value": true
},
"responses": [
{
"index": 0,
"function": "domains.update",
"status": "completed",
"result": true
}
],
"complexity_score": 1
}
MCP の例
MCP の例
リクエスト:レスポンス:
{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "domains.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", auto_renew=true, redirect_mode=\"<string>\", redirect_url=\"<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\": true\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"domains.update\",\n \"status\": \"completed\",\n \"result\": true\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
domains.verify
domains.verify(account_id: str, domain: str) -> Domain
domains.verify.
| プロパティ | 値 | プロパティ | 値 |
|---|---|---|---|
| 必要な権限 | domain.verify | 認証必須 | はい |
| 実行モード | sync | 機能権限 | domain.verify |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | POST /v1/public/accounts/{account_id}/domains/{domain}/verify |
引数
引数
| 名前 | 型 | 必須 |
|---|---|---|
account_id | str | はい |
domain | str | はい |
戻り値
戻り値
| フィールド | 型 | 必須 |
|---|---|---|
actual_nameservers | [str] | はい |
domain_id | str | はい |
expected_nameservers | [str] | はい |
message | str | はい |
status | str | はい |
verified | bool | はい |
missing_nameservers | [str] | いいえ |
unexpected_nameservers | [str] | いいえ |
A2A の例
A2A の例
リクエスト:レスポンス:
{
"request_id": "example",
"session_id": "session_123",
"code": "domains.verify(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\")"
}
{
"request_id": "example",
"status": "completed",
"result": {
"last_value": true
},
"responses": [
{
"index": 0,
"function": "domains.verify",
"status": "completed",
"result": true
}
],
"complexity_score": 1
}
MCP の例
MCP の例
リクエスト:レスポンス:
{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "domains.verify(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\")"
}
}
}
{
"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\": \"domains.verify\",\n \"status\": \"completed\",\n \"result\": true\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}