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.
マスターパスワード
スコープ付きマスターパスワードを作成、一覧表示、名前変更、削除します。
例では A2A コードモードを使用します。MCP は execute ツールを通じて同じコードモードを公開します。
credentials.add
credentials.add(account_id: str, name: str, domain?: str | null, generate?: bool, value?: str | null, workspace_id?: str | null) -> MasterPassword
マスターパスワード: credentials.add.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | credential.manage | 認証必須 | はい |
| 実行モード | sync | 機能権限 | credential.manage |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | POST /v1/public/accounts/{account_id}/credentials | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
name | str | はい |
domain | str | null | いいえ |
generate | bool | いいえ |
value | str | null | いいえ |
workspace_id | str | null | いいえ |
| フィールド | 型 | 必須 |
|---|
created_at | str | はい |
id | str | はい |
name | str | はい |
scope_id | str | はい |
scope_type | "account" | "workspace" | "domain" | はい |
updated_at | str | はい |
generated_secret | str | null | いいえ |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "credentials.add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", name=\"<string>\", domain=\"example.com\", generate=true, value=\"<string>\", workspace_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": "<string>"
},
"responses": [
{
"index": 0,
"function": "credentials.add",
"status": "completed",
"result": "<string>"
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "credentials.add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", name=\"<string>\", domain=\"example.com\", generate=true, value=\"<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\": \"<string>\"\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"credentials.add\",\n \"status\": \"completed\",\n \"result\": \"<string>\"\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
credentials.delete
credentials.delete(account_id: str, credential_id: str) -> {}
マスターパスワード: credentials.delete.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | credential.manage | 認証必須 | はい |
| 実行モード | sync | 機能権限 | credential.manage |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | DELETE /v1/public/accounts/{account_id}/credentials/{credential_id} | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
credential_id | str | はい |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "credentials.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", credential_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": {}
},
"responses": [
{
"index": 0,
"function": "credentials.delete",
"status": "completed",
"result": {}
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "credentials.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", credential_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\": {}\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"credentials.delete\",\n \"status\": \"completed\",\n \"result\": {}\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
credentials.list
credentials.list(account_id: str, page?: int, page_size?: int) -> Page[MasterPassword]
マスターパスワード: credentials.list.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | credential.view | 認証必須 | はい |
| 実行モード | sync | 機能権限 | credential.view |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | GET /v1/public/accounts/{account_id}/credentials | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
page | int | いいえ |
page_size | int | いいえ |
| フィールド | 型 | 必須 |
|---|
items | [{"created_at": str, "id": str, "name": str, "scope_id": str, "scope_type": "account" | "workspace" | "domain", "updated_at": str}] | はい |
page | int | はい |
page_size | int | はい |
total | int | はい |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "credentials.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", page=123, page_size=123)"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": "<string>"
},
"responses": [
{
"index": 0,
"function": "credentials.list",
"status": "completed",
"result": "<string>"
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "credentials.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", page=123, page_size=123)"
}
}
}
レスポンス:{
"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\": \"credentials.list\",\n \"status\": \"completed\",\n \"result\": \"<string>\"\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
credentials.update
credentials.update(account_id: str, credential_id: str, name: str) -> MasterPassword
マスターパスワード: credentials.update.
| プロパティ | 値 | プロパティ | 値 |
|---|
| 必要な権限 | credential.manage | 認証必須 | はい |
| 実行モード | sync | 機能権限 | credential.manage |
| リソースタイプ | account | リソース ID フィールド | account_id |
| 公開 API ルート | PATCH /v1/public/accounts/{account_id}/credentials/{credential_id} | | |
| 名前 | 型 | 必須 |
|---|
account_id | str | はい |
credential_id | str | はい |
name | str | はい |
| フィールド | 型 | 必須 |
|---|
created_at | str | はい |
id | str | はい |
name | str | はい |
scope_id | str | はい |
scope_type | "account" | "workspace" | "domain" | はい |
updated_at | str | はい |
リクエスト:{
"request_id": "example",
"session_id": "session_123",
"code": "credentials.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", credential_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", name=\"<string>\")"
}
レスポンス:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": "<string>"
},
"responses": [
{
"index": 0,
"function": "credentials.update",
"status": "completed",
"result": "<string>"
}
],
"complexity_score": 1
}
リクエスト:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "credentials.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", credential_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", name=\"<string>\")"
}
}
}
レスポンス:{
"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\": \"credentials.update\",\n \"status\": \"completed\",\n \"result\": \"<string>\"\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}