DOMAIN · Error
E_NAMECHEAP_INVALID
Namecheap rejected the input shape.
— · Resolution
How to recover
Check DNS record types — only A, AAAA, CNAME, TXT, MX, NS, SRV are supported.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_NAMECHEAP_INVALID',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Check DNS record types — only A, AAAA, CNAME, TXT, MX, NS, SRV are supported.',
docs: 'https://openagentry.dev/errors/E_NAMECHEAP_INVALID',
});
The context field carries adapter-specific
detail (HTTP status, missing env-var names, validation issues). It
never contains secret values.
— · See also
Related codes from @openagentry/adapter-domain-namecheap
-
E_NAMECHEAP_AUTHNamecheap credentials missing or rejected. -
E_NAMECHEAP_IP_NOT_WHITELISTEDCaller's IP is not on Namecheap's API allowlist. -
E_NAMECHEAP_DOMAIN_NOT_FOUNDRequested domain not found in your Namecheap account. -
E_NAMECHEAP_RATE_LIMITNamecheap API rate limit reached. -
E_NAMECHEAP_NETWORKNetwork failure reaching Namecheap. -
E_NAMECHEAP_UPSTREAMNamecheap returned a non-2xx HTTP status. -
E_NAMECHEAP_SCHEMAInput failed Zod validation.