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
| Name | Required | Description | Default |
|---|---|---|---|
| contact_id | Yes | Contact ID | |
| status | Yes | Verification status to set |
Implementation Reference
- src/tools/contact.ts:254-279 (handler)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, }; } } );