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.
Etiquetas
Gerenciar etiquetas de recursos e suas atribuições.
Os exemplos usam o modo de código A2A. O MCP expõe o mesmo modo de código pela ferramenta execute.
Funções
tags.add(account_id: str, tag_name: str, color_hex?: str, description?: str | null) -> Tag
Etiquetas: tags.add.
| Propriedade | Valor | Propriedade | Valor |
|---|
| Permissão necessária | tag.manage | Autenticação obrigatória | sim |
| Modo de execução | sync | Capacidade | tag.manage |
| Tipo de recurso | account | Campo de ID do recurso | account_id |
| Rota da API pública | POST /v1/public/accounts/{account_id}/tags | | |
| Nome | Tipo | Obrigatório |
|---|
account_id | str | sim |
tag_name | str | sim |
color_hex | str | não |
description | str | null | não |
| Campo | Tipo | Obrigatório |
|---|
color_hex | str | sim |
id | str | sim |
name | str | sim |
created_at | str | null | não |
description | str | null | não |
updated_at | str | null | não |
Requisição:{
"request_id": "example",
"session_id": "session_123",
"code": "tags.add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_name=\"<string>\", color_hex=\"<string>\", description=\"<string>\")"
}
Resposta:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": "<string>"
},
"responses": [
{
"index": 0,
"function": "tags.add",
"status": "completed",
"result": "<string>"
}
],
"complexity_score": 1
}
Requisição:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "tags.add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_name=\"<string>\", color_hex=\"<string>\", description=\"<string>\")"
}
}
}
Resposta:{
"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\": \"tags.add\",\n \"status\": \"completed\",\n \"result\": \"<string>\"\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
tags.delete(account_id: str, tag_id: str) -> {}
Etiquetas: tags.delete.
| Propriedade | Valor | Propriedade | Valor |
|---|
| Permissão necessária | tag.manage | Autenticação obrigatória | sim |
| Modo de execução | sync | Capacidade | tag.manage |
| Tipo de recurso | account | Campo de ID do recurso | account_id |
| Rota da API pública | DELETE /v1/public/accounts/{account_id}/tags/{tag_id} | | |
| Nome | Tipo | Obrigatório |
|---|
account_id | str | sim |
tag_id | str | sim |
| Campo | Tipo | Obrigatório |
|---|
result | {} | sim |
Requisição:{
"request_id": "example",
"session_id": "session_123",
"code": "tags.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
Resposta:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": {}
},
"responses": [
{
"index": 0,
"function": "tags.delete",
"status": "completed",
"result": {}
}
],
"complexity_score": 1
}
Requisição:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "tags.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
}
}
}
Resposta:{
"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\": \"tags.delete\",\n \"status\": \"completed\",\n \"result\": {}\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
tags.domains.assign
tags.domains.assign(account_id: str, tag_id: str, domain_ids: [str]) -> Tag
Etiquetas: tags.domains.assign.
| Propriedade | Valor | Propriedade | Valor |
|---|
| Permissão necessária | tag.manage | Autenticação obrigatória | sim |
| Modo de execução | sync | Capacidade | tag.manage |
| Tipo de recurso | account | Campo de ID do recurso | account_id |
| Rota da API pública | POST /v1/public/accounts/{account_id}/tags/{tag_id}/domains/assign | | |
| Nome | Tipo | Obrigatório |
|---|
account_id | str | sim |
tag_id | str | sim |
domain_ids | [str] | sim |
| Campo | Tipo | Obrigatório |
|---|
domain_ids | [str] | sim |
tag_id | str | sim |
Requisição:{
"request_id": "example",
"session_id": "session_123",
"code": "tags.domains.assign(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain_ids=\"example.com\")"
}
Resposta:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": {
"domain_ids": [
"<string>"
],
"tag_id": "<string>"
}
},
"responses": [
{
"index": 0,
"function": "tags.domains.assign",
"status": "completed",
"result": {
"domain_ids": [
"<string>"
],
"tag_id": "<string>"
}
}
],
"complexity_score": 1
}
Requisição:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "tags.domains.assign(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain_ids=\"example.com\")"
}
}
}
Resposta:{
"jsonrpc": "2.0",
"id": "example",
"result": {
"content": [
{
"type": "text",
"text": "{\n \"request_id\": \"example\",\n \"status\": \"completed\",\n \"result\": {\n \"last_value\": {\n \"domain_ids\": [\n \"<string>\"\n ],\n \"tag_id\": \"<string>\"\n }\n },\n \"responses\": [\n {\n \"index\": 0,\n \"function\": \"tags.domains.assign\",\n \"status\": \"completed\",\n \"result\": {\n \"domain_ids\": [\n \"<string>\"\n ],\n \"tag_id\": \"<string>\"\n }\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
tags.domains.unassign
tags.domains.unassign(account_id: str, tag_id: str, domain_ids: [str]) -> {}
Etiquetas: tags.domains.unassign.
| Propriedade | Valor | Propriedade | Valor |
|---|
| Permissão necessária | tag.manage | Autenticação obrigatória | sim |
| Modo de execução | sync | Capacidade | tag.manage |
| Tipo de recurso | account | Campo de ID do recurso | account_id |
| Rota da API pública | POST /v1/public/accounts/{account_id}/tags/{tag_id}/domains/unassign | | |
| Nome | Tipo | Obrigatório |
|---|
account_id | str | sim |
tag_id | str | sim |
domain_ids | [str] | sim |
| Campo | Tipo | Obrigatório |
|---|
result | {} | sim |
Requisição:{
"request_id": "example",
"session_id": "session_123",
"code": "tags.domains.unassign(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain_ids=\"example.com\")"
}
Resposta:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": {}
},
"responses": [
{
"index": 0,
"function": "tags.domains.unassign",
"status": "completed",
"result": {}
}
],
"complexity_score": 1
}
Requisição:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "tags.domains.unassign(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain_ids=\"example.com\")"
}
}
}
Resposta:{
"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\": \"tags.domains.unassign\",\n \"status\": \"completed\",\n \"result\": {}\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
tags.list(account_id: str, page?: int, page_size?: int) -> Page[Tag]
Etiquetas: tags.list.
| Propriedade | Valor | Propriedade | Valor |
|---|
| Permissão necessária | tag.view | Autenticação obrigatória | sim |
| Modo de execução | sync | Capacidade | tag.view |
| Tipo de recurso | account | Campo de ID do recurso | account_id |
| Rota da API pública | GET /v1/public/accounts/{account_id}/tags | | |
| Nome | Tipo | Obrigatório |
|---|
account_id | str | sim |
page | int | não |
page_size | int | não |
| Campo | Tipo | Obrigatório |
|---|
items | [{"color_hex": str, "id": str, "name": str, "created_at"?: str | null, "description"?: str | null, "updated_at"?: str | null}] | sim |
page | int | sim |
page_size | int | sim |
total | int | sim |
Requisição:{
"request_id": "example",
"session_id": "session_123",
"code": "tags.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", page=123, page_size=123)"
}
Resposta:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": "<string>"
},
"responses": [
{
"index": 0,
"function": "tags.list",
"status": "completed",
"result": "<string>"
}
],
"complexity_score": 1
}
Requisição:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "tags.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", page=123, page_size=123)"
}
}
}
Resposta:{
"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\": \"tags.list\",\n \"status\": \"completed\",\n \"result\": \"<string>\"\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}
tags.update(account_id: str, tag_id: str, color_hex?: str | null, description?: str | null, tag_name?: str | null) -> Tag
Etiquetas: tags.update.
| Propriedade | Valor | Propriedade | Valor |
|---|
| Permissão necessária | tag.manage | Autenticação obrigatória | sim |
| Modo de execução | sync | Capacidade | tag.manage |
| Tipo de recurso | account | Campo de ID do recurso | account_id |
| Rota da API pública | PATCH /v1/public/accounts/{account_id}/tags/{tag_id} | | |
| Nome | Tipo | Obrigatório |
|---|
account_id | str | sim |
tag_id | str | sim |
color_hex | str | null | não |
description | str | null | não |
tag_name | str | null | não |
| Campo | Tipo | Obrigatório |
|---|
color_hex | str | sim |
id | str | sim |
name | str | sim |
created_at | str | null | não |
description | str | null | não |
updated_at | str | null | não |
Requisição:{
"request_id": "example",
"session_id": "session_123",
"code": "tags.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", color_hex=\"<string>\", description=\"<string>\", tag_name=\"<string>\")"
}
Resposta:{
"request_id": "example",
"status": "completed",
"result": {
"last_value": "<string>"
},
"responses": [
{
"index": 0,
"function": "tags.update",
"status": "completed",
"result": "<string>"
}
],
"complexity_score": 1
}
Requisição:{
"jsonrpc": "2.0",
"id": "example",
"method": "tools/call",
"params": {
"name": "hybridbox_execute",
"arguments": {
"code": "tags.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", color_hex=\"<string>\", description=\"<string>\", tag_name=\"<string>\")"
}
}
}
Resposta:{
"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\": \"tags.update\",\n \"status\": \"completed\",\n \"result\": \"<string>\"\n }\n ],\n \"complexity_score\": 1\n}"
}
],
"isError": false
}
}