Skip to main content
Glama

set_reseller_verification

Update WHOIS verification status for reseller contacts in Dynadot domain registrar to manage contact compliance.

Instructions

Set the WHOIS verification status for a reseller contact.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contact_idYesContact ID
statusYesVerification status to set

Implementation Reference

  • Tool registration and handler implementation for set_reseller_verification.
    server.tool(
      "set_reseller_verification",
      "Set the WHOIS verification status for a reseller contact.",
      {
        contact_id: z.string().describe("Contact ID"),
        status: z.string().describe("Verification status to set"),
      },
      async ({ contact_id, status }) => {
        try {
          const result = await client.setResellerContactWhoisVerificationStatus(contact_id, status);
          return {
            content: [
              { type: "text" as const, text: JSON.stringify(result, null, 2) },
            ],
          };
        } catch (error) {
          const msg = error instanceof Error ? error.message : String(error);
          return {
            content: [
              { type: "text" as const, text: `Failed to set verification status: ${msg}` },
            ],
            isError: true,
          };
        }
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikusnuz/dynadot-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server