DOMAIN · Error
E_NAMECHEAP_AUTH
Namecheap credentials missing or rejected.
— · Resolution
How to recover
Set NAMECHEAP_API_USER, NAMECHEAP_API_KEY, NAMECHEAP_USERNAME, NAMECHEAP_CLIENT_IP.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_NAMECHEAP_AUTH',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Set NAMECHEAP_API_USER, NAMECHEAP_API_KEY, NAMECHEAP_USERNAME, NAMECHEAP_CLIENT_IP.',
docs: 'https://openagentry.dev/errors/E_NAMECHEAP_AUTH',
});
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_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_INVALIDNamecheap rejected the input shape. -
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.