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 도구를 통해 동일한 코드 모드를 노출합니다.
billing.current_plan.get
billing.current_plan.get(account_id: str) -> BillingResult
청구: billing.current_plan.get.
| 속성 | 값 | 속성 | 값 |
|---|
| 필요 권한 | billing.view | 인증 필요 | 예 |
| 실행 모드 | sync | 기능 권한 | billing.view |
| 리소스 유형 | account | 리소스 ID 필드 | account_id |
| 공개 API 경로 | GET /v1/public/accounts/{account_id}/billing/current-plan | | |
| 필드 | 유형 | 필수 |
|---|
billing_period | str | 예 |
currency | str | 예 |
plan_id | str | 예 |
plan_name | str | 예 |
price | str | 예 |
status | str | 예 |
can_cancel_plan | bool | 아니요 |
can_change_plan | bool | 아니요 |
요청:{
"request_id": "example",
"session_id": "session_123",
"code": "billing.current_plan.get(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
응답:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": true
},
"responses": [
{
"index": 0,
"function": "billing.current_plan.get",
"status": "completed",
"result": true
}
],
"complexity_score": 1
}
요청:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "billing.current_plan.get(account_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\": \"billing.current_plan.get\",\n \"status\": \"completed\",\n \"result\": true\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
billing.invoices.list
billing.invoices.list(account_id: str, page?: int, page_size?: int) -> Page[BillingResult]
청구: billing.invoices.list.
| 속성 | 값 | 속성 | 값 |
|---|
| 필요 권한 | billing.view | 인증 필요 | 예 |
| 실행 모드 | sync | 기능 권한 | billing.view |
| 리소스 유형 | account | 리소스 ID 필드 | account_id |
| 공개 API 경로 | GET /v1/public/accounts/{account_id}/billing/invoices | | |
| 이름 | 유형 | 필수 |
|---|
account_id | str | 예 |
page | int | 아니요 |
page_size | int | 아니요 |
| 필드 | 유형 | 필수 |
|---|
items | [{"amount": str, "currency": str, "date": str, "download_url": str | null, "id": str, "status": str}] | 예 |
page | int | 예 |
page_size | int | 예 |
total | int | 예 |
요청:{
"request_id": "example",
"session_id": "session_123",
"code": "billing.invoices.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": "billing.invoices.list",
"status": "completed",
"result": "<string>"
}
],
"complexity_score": 1
}
요청:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "billing.invoices.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\": \"billing.invoices.list\",\n \"status\": \"completed\",\n \"result\": \"<string>\"\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
billing.plan.cancel
billing.plan.cancel(account_id: str, cancel_at_period_end?: bool, cancel_immediately?: bool) -> BillingResult
청구: billing.plan.cancel.
| 속성 | 값 | 속성 | 값 |
|---|
| 필요 권한 | billing.manage | 인증 필요 | 예 |
| 실행 모드 | sync | 기능 권한 | billing.manage |
| 리소스 유형 | account | 리소스 ID 필드 | account_id |
| 공개 API 경로 | POST /v1/public/accounts/{account_id}/billing/cancel-plan | | |
| 이름 | 유형 | 필수 |
|---|
account_id | str | 예 |
cancel_at_period_end | bool | 아니요 |
cancel_immediately | bool | 아니요 |
| 필드 | 유형 | 필수 |
|---|
status | str | 예 |
account_status | str | null | 아니요 |
effective_at | str | null | 아니요 |
eligible | bool | null | 아니요 |
previous_plan_id | str | null | 아니요 |
target_plan_id | str | null | 아니요 |
요청:{
"request_id": "example",
"session_id": "session_123",
"code": "billing.plan.cancel(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", cancel_at_period_end=true, cancel_immediately=true)"
}
응답:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": "<string>"
},
"responses": [
{
"index": 0,
"function": "billing.plan.cancel",
"status": "completed",
"result": "<string>"
}
],
"complexity_score": 1
}
요청:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "billing.plan.cancel(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", cancel_at_period_end=true, cancel_immediately=true)"
}
}
}
응답:{
"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\": \"billing.plan.cancel\",\n \"status\": \"completed\",\n \"result\": \"<string>\"\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
billing.plan.change
billing.plan.change(account_id: str, plan_id: "smtp_per_mailbox" | "smtp_per_proxy", effective_date?: str | null) -> BillingResult
청구: billing.plan.change.
| 속성 | 값 | 속성 | 값 |
|---|
| 필요 권한 | billing.manage | 인증 필요 | 예 |
| 실행 모드 | sync | 기능 권한 | billing.manage |
| 리소스 유형 | account | 리소스 ID 필드 | account_id |
| 공개 API 경로 | POST /v1/public/accounts/{account_id}/billing/change-plan | | |
| 이름 | 유형 | 필수 |
|---|
account_id | str | 예 |
plan_id | "smtp_per_mailbox" | "smtp_per_proxy" | 예 |
effective_date | str | null | 아니요 |
| 필드 | 유형 | 필수 |
|---|
status | str | 예 |
account_status | str | null | 아니요 |
effective_at | str | null | 아니요 |
eligible | bool | null | 아니요 |
previous_plan_id | str | null | 아니요 |
target_plan_id | str | null | 아니요 |
요청:{
"request_id": "example",
"session_id": "session_123",
"code": "billing.plan.change(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", plan_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", effective_date=\"<string>\")"
}
응답:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": "<string>"
},
"responses": [
{
"index": 0,
"function": "billing.plan.change",
"status": "completed",
"result": "<string>"
}
],
"complexity_score": 1
}
요청:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "billing.plan.change(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", plan_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", effective_date=\"<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\": \"billing.plan.change\",\n \"status\": \"completed\",\n \"result\": \"<string>\"\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
billing.transactions.list
billing.transactions.list(account_id: str, page?: int, page_size?: int) -> Page[BillingResult]
청구: billing.transactions.list.
| 속성 | 값 | 속성 | 값 |
|---|
| 필요 권한 | billing.view | 인증 필요 | 예 |
| 실행 모드 | sync | 기능 권한 | billing.view |
| 리소스 유형 | account | 리소스 ID 필드 | account_id |
| 공개 API 경로 | GET /v1/public/accounts/{account_id}/billing/transactions | | |
| 이름 | 유형 | 필수 |
|---|
account_id | str | 예 |
page | int | 아니요 |
page_size | int | 아니요 |
| 필드 | 유형 | 필수 |
|---|
page | int | 예 |
page_size | int | 예 |
total | int | 예 |
items | [{"amount": str, "currency": str, "direction": str, "effective_at": str, "status": str, "transaction_id": str, "type": str, "balance_after"?: str | null, "description"?: str | null}] | 아니요 |
요청:{
"request_id": "example",
"session_id": "session_123",
"code": "billing.transactions.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", page=123, page_size=123)"
}
응답:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": 123
},
"responses": [
{
"index": 0,
"function": "billing.transactions.list",
"status": "completed",
"result": 123
}
],
"complexity_score": 1
}
요청:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "billing.transactions.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\": 123\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"billing.transactions.list\",\n \"status\": \"completed\",\n \"result\": 123\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
billing.wallet_balance.get
billing.wallet_balance.get(account_id: str) -> BillingResult
청구: billing.wallet_balance.get.
| 속성 | 값 | 속성 | 값 |
|---|
| 필요 권한 | billing.view | 인증 필요 | 예 |
| 실행 모드 | sync | 기능 권한 | billing.view |
| 리소스 유형 | account | 리소스 ID 필드 | account_id |
| 공개 API 경로 | GET /v1/public/accounts/{account_id}/billing/wallet-balance | | |
| 필드 | 유형 | 필수 |
|---|
accrued_charges | str | 예 |
balance | str | 예 |
currency | str | 예 |
net_balance | str | 예 |
요청:{
"request_id": "example",
"session_id": "session_123",
"code": "billing.wallet_balance.get(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
응답:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": {
"accrued_charges": "<string>",
"balance": "<string>",
"currency": "<string>",
"net_balance": "<string>"
}
},
"responses": [
{
"index": 0,
"function": "billing.wallet_balance.get",
"status": "completed",
"result": {
"accrued_charges": "<string>",
"balance": "<string>",
"currency": "<string>",
"net_balance": "<string>"
}
}
],
"complexity_score": 1
}
요청:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "billing.wallet_balance.get(account_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 \"accrued_charges\": \"<string>\",\n \"balance\": \"<string>\",\n \"currency\": \"<string>\",\n \"net_balance\": \"<string>\"\n }\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"billing.wallet_balance.get\",\n \"status\": \"completed\",\n \"result\": {\n \"accrued_charges\": \"<string>\",\n \"balance\": \"<string>\",\n \"currency\": \"<string>\",\n \"net_balance\": \"<string>\"\n }\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}