From ef62ef232f82e0b305a0eb172262ee5ef161c1b8 Mon Sep 17 00:00:00 2001 From: fuomag9 <1580624+fuomag9@users.noreply.github.com> Date: Sat, 18 Apr 2026 00:57:36 +0200 Subject: [PATCH] Fix IONOS DNS provider field name (api_token -> auth_api_token) The IONOS libdns provider uses auth_api_token as the JSON field name, not api_token. This caused Caddy to reject the config with "unknown field api_token". Co-Authored-By: Claude Opus 4.6 (1M context) --- src/lib/dns-providers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/dns-providers.ts b/src/lib/dns-providers.ts index 0b22b5ac..87cbe779 100644 --- a/src/lib/dns-providers.ts +++ b/src/lib/dns-providers.ts @@ -177,7 +177,7 @@ export const DNS_PROVIDERS: DnsProviderDefinition[] = [ docsUrl: "https://github.com/caddy-dns/ionos", modulePath: "github.com/caddy-dns/ionos", fields: [ - { key: "api_token", label: "API Token", type: "password", required: true, placeholder: "prefix.secret" }, + { key: "auth_api_token", label: "API Token", type: "password", required: true, placeholder: "prefix.secret" }, ], }, {