Naar hoofdinhoud gaan

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.

DNS-records

DNS-records vermelden, maken, bijwerken en verwijderen. De voorbeelden gebruiken de A2A-codemodus. MCP biedt dezelfde codemodus via het hulpmiddel execute.

Functies

dns_records.add

dns_records.add(account_id: str, domain: str, name: str, type: str, value: str, prio?: int | null, ttl?: int) -> DNSRecord
DNS-records: dns_records.add.
EigenschapWaardeEigenschapWaarde
Vereiste machtigingdns.record.createAuthenticatie vereistja
UitvoermodussyncMogelijkheiddns.record.create
ResourcetypeaccountResource-ID-veldaccount_id
Openbare API-routePOST /v1/public/accounts/{account_id}/dns-records
NaamTypeVereist
account_idstrja
domainstrja
namestrja
typestrja
valuestrja
prioint | nullnee
ttlintnee
VeldTypeVereist
idintja
namestrja
ttlintja
typestrja
valuestrja
is_system_managedboolnee
priorityint | nullnee
Aanvraag:
{
  "request_id": "example",
  "session_id": "session_123",
  "code": "dns_records.add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", name=\"<string>\", type=\"<string>\", value=\"<string>\", prio=123, ttl=123)"
}
Respons:
{
  "request_id": "example",
  "status": "completed",
  "result": {
    "last_value": 123
  },
  "responses": [
    {
      "index": 0,
      "function": "dns_records.add",
      "status": "completed",
      "result": 123
    }
  ],
  "complexity_score": 1
}
Aanvraag:
{
  "jsonrpc": "2.0",
  "id": "example",
  "method": "tools/call",
  "params": {
    "name": "hybridbox_execute",
    "arguments": {
      "code": "dns_records.add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", name=\"<string>\", type=\"<string>\", value=\"<string>\", prio=123, ttl=123)"
    }
  }
}
Respons:
{
  "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\": \"dns_records.add\",\n      \"status\": \"completed\",\n      \"result\": 123\n    }\n  ],\n  \"complexity_score\": 1\n}"
      }
    ],
    "isError": false
  }
}

dns_records.delete

dns_records.delete(account_id: str, record_id: int) -> {}
DNS-records: dns_records.delete.
EigenschapWaardeEigenschapWaarde
Vereiste machtigingdns.record.deleteAuthenticatie vereistja
UitvoermodussyncMogelijkheiddns.record.delete
ResourcetypeaccountResource-ID-veldaccount_id
Openbare API-routeDELETE /v1/public/accounts/{account_id}/dns-records/{record_id}
NaamTypeVereist
account_idstrja
record_idintja
VeldTypeVereist
result{}ja
Aanvraag:
{
  "request_id": "example",
  "session_id": "session_123",
  "code": "dns_records.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", record_id=123)"
}
Respons:
{
  "request_id": "example",
  "status": "completed",
  "result": {
    "last_value": {}
  },
  "responses": [
    {
      "index": 0,
      "function": "dns_records.delete",
      "status": "completed",
      "result": {}
    }
  ],
  "complexity_score": 1
}
Aanvraag:
{
  "jsonrpc": "2.0",
  "id": "example",
  "method": "tools/call",
  "params": {
    "name": "hybridbox_execute",
    "arguments": {
      "code": "dns_records.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", record_id=123)"
    }
  }
}
Respons:
{
  "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\": \"dns_records.delete\",\n      \"status\": \"completed\",\n      \"result\": {}\n    }\n  ],\n  \"complexity_score\": 1\n}"
      }
    ],
    "isError": false
  }
}

dns_records.list

dns_records.list(account_id: str, domain?: str | null, name?: str | null, page?: int, page_size?: int, type?: str | null) -> Page[DNSRecord]
DNS-records: dns_records.list.
EigenschapWaardeEigenschapWaarde
Vereiste machtigingdns.record.viewAuthenticatie vereistja
UitvoermodussyncMogelijkheiddns.record.view
ResourcetypeaccountResource-ID-veldaccount_id
Openbare API-routeGET /v1/public/accounts/{account_id}/dns-records
NaamTypeVereist
account_idstrja
domainstr | nullnee
namestr | nullnee
pageintnee
page_sizeintnee
typestr | nullnee
VeldTypeVereist
items[{"id": int, "name": str, "ttl": int, "type": str, "value": str, "is_system_managed"?: bool, "priority"?: int | null}]ja
pageintja
page_sizeintja
totalintja
Aanvraag:
{
  "request_id": "example",
  "session_id": "session_123",
  "code": "dns_records.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", name=\"<string>\", page=123, page_size=123, type=\"<string>\")"
}
Respons:
{
  "request_id": "example",
  "status": "completed",
  "result": {
    "last_value": 123
  },
  "responses": [
    {
      "index": 0,
      "function": "dns_records.list",
      "status": "completed",
      "result": 123
    }
  ],
  "complexity_score": 1
}
Aanvraag:
{
  "jsonrpc": "2.0",
  "id": "example",
  "method": "tools/call",
  "params": {
    "name": "hybridbox_execute",
    "arguments": {
      "code": "dns_records.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain=\"example.com\", name=\"<string>\", page=123, page_size=123, type=\"<string>\")"
    }
  }
}
Respons:
{
  "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\": \"dns_records.list\",\n      \"status\": \"completed\",\n      \"result\": 123\n    }\n  ],\n  \"complexity_score\": 1\n}"
      }
    ],
    "isError": false
  }
}

dns_records.update

dns_records.update(account_id: str, record_id: int, disabled?: bool | null, name?: str | null, prio?: int | null, ttl?: int | null, value?: str | null) -> DNSRecord
DNS-records: dns_records.update.
EigenschapWaardeEigenschapWaarde
Vereiste machtigingdns.record.updateAuthenticatie vereistja
UitvoermodussyncMogelijkheiddns.record.update
ResourcetypeaccountResource-ID-veldaccount_id
Openbare API-routePATCH /v1/public/accounts/{account_id}/dns-records/{record_id}
NaamTypeVereist
account_idstrja
record_idintja
disabledbool | nullnee
namestr | nullnee
prioint | nullnee
ttlint | nullnee
valuestr | nullnee
VeldTypeVereist
idintja
namestrja
ttlintja
typestrja
valuestrja
is_system_managedboolnee
priorityint | nullnee
Aanvraag:
{
  "request_id": "example",
  "session_id": "session_123",
  "code": "dns_records.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", record_id=123, disabled=true, name=\"<string>\", prio=123, ttl=123, value=\"<string>\")"
}
Respons:
{
  "request_id": "example",
  "status": "completed",
  "result": {
    "last_value": 123
  },
  "responses": [
    {
      "index": 0,
      "function": "dns_records.update",
      "status": "completed",
      "result": 123
    }
  ],
  "complexity_score": 1
}
Aanvraag:
{
  "jsonrpc": "2.0",
  "id": "example",
  "method": "tools/call",
  "params": {
    "name": "hybridbox_execute",
    "arguments": {
      "code": "dns_records.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", record_id=123, disabled=true, name=\"<string>\", prio=123, ttl=123, value=\"<string>\")"
    }
  }
}
Respons:
{
  "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\": \"dns_records.update\",\n      \"status\": \"completed\",\n      \"result\": 123\n    }\n  ],\n  \"complexity_score\": 1\n}"
      }
    ],
    "isError": false
  }
}