domains_createWHOISProfileV1
Generate a WHOIS contact profile for domain registration by specifying TLD, country code, entity type, and WHOIS details. Streamlines the process of adding accurate contact information for domain setup.
Instructions
Create WHOIS contact profile.
Use this endpoint to add new contact information for domain registration.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| country | Yes | ISO 3166 2-letter country code | |
| entity_type | Yes | Legal entity type | |
| tld | Yes | TLD of the domain (without leading dot) | |
| tld_details | No | TLD details | |
| whois_details | Yes | WHOIS details |
Implementation Reference
- types.d.ts:802-826 (schema)TypeScript interface definition for the 'domains_createWHOISProfileV1' tool schema, specifying input parameters (tld, country, entity_type, tld_details, whois_details) and generic response."domains_createWHOISProfileV1": { params: { /** * TLD of the domain (without leading dot) */ tld: string; /** * ISO 3166 2-letter country code */ country: string; /** * Legal entity type */ entity_type: string; /** * TLD details */ tld_details?: object; /** * WHOIS details */ whois_details: object; }; response: any; // Response structure will depend on the API };