From d78d66a101e1bd299423d48993b3b42c905d1704 Mon Sep 17 00:00:00 2001 From: ctrlaltca Date: Wed, 19 Mar 2025 14:39:39 +0100 Subject: [PATCH] Add netim --- dnsapi2.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/dnsapi2.md b/dnsapi2.md index 353ab84..da3f4ba 100644 --- a/dnsapi2.md +++ b/dnsapi2.md @@ -102,6 +102,7 @@ - [178. Use FreeMyIP DNS API](#dns_freemyip) - [179. Use Area-7 DNS API](#dns_area7) - [180. Use HestiaCP DNS API](#dns_hestiacp) +- [181. Use Netim DNS API](#dns_netim) - [Use custom API](#dns_myapi) - [Use lexicon DNS API](#dns_lexicon) @@ -2581,6 +2582,30 @@ Example Usage: acme.sh --issue -d example.com -d *.example.com --dns dns_hestiacp ``` + + +## 181. Use Netim DNS API + +You need a reseller account to access the DNS API. + +API Key Setup: + 1. Log in to Netim Direct with a reseller account + 2. Go to Account -> Personal information and find your "UserID:" + 3. Use the same pasword used to login on Netim Direct + +Before running `acme.sh` script, you need to provide your user and secret: + +```sh +export NETIM_USER='XX1234' +export NETIM_SECRET='mypassword' +``` + +To issue your certificate run: + +```sh +./acme.sh --issue --dns dns_netim -d example.domain.com +``` + ## Use custom API