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 | حقل معرف المورد | 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 | حقل معرف المورد | account_id |
| مسار API العام | DELETE /v1/public/accounts/{account_id}/credentials/{credential_id} | | |
| الاسم | النوع | مطلوب |
|---|
account_id | str | نعم |
credential_id | str | نعم |
| الحقل | النوع | مطلوب |
|---|
result | {} | نعم |
الطلب:{
"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 | حقل معرف المورد | 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 | حقل معرف المورد | 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
}
}