DOMAIN · Error
E_NAMECHEAP_UPSTREAM
Namecheap returned a non-2xx HTTP status.
— · Resolution
How to recover
Inspect `error.context.httpStatus` and the upstream message.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_NAMECHEAP_UPSTREAM',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Inspect `error.context.httpStatus` and the upstream message.',
docs: 'https://openagentry.dev/errors/E_NAMECHEAP_UPSTREAM',
});
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_INVALIDNamecheap rejected the input shape. -
E_NAMECHEAP_RATE_LIMITNamecheap API rate limit reached. -
E_NAMECHEAP_NETWORKNetwork failure reaching Namecheap. -
E_NAMECHEAP_SCHEMAInput failed Zod validation.