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
}
}