Open Context Protocol is live! 🚀 Read the launch post
updateDnsDomainSoa

updateDnsDomainSoa

Update SOA information

Details

  • Method: PATCH
  • Path: /domains/{dns-domain}/soa
  • Operation ID: update-dns-domain-soa

Parameters

{
  "nsprimary": {
    "description": "Set the primary nameserver.",
    "required": false,
    "location": "body",
    "type": "string"
  },
  "email": {
    "description": "Set the contact email address.",
    "required": false,
    "location": "body",
    "type": "string"
  }
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('vultr')

# Call this tool
result = await agent.call_tool('updateDnsDomainSoa', {
    # Add required parameters here
})