From 63d8e680f48e2068e84f7ea3588410348c221b0c Mon Sep 17 00:00:00 2001 From: Muhammad Nurhafiz <64152220+kurkurzz@users.noreply.github.com> Date: Fri, 30 Jun 2023 04:35:04 +0800 Subject: [PATCH] domains_dns_delHost: fix record key in comment api.domains_dns_delHost('example.com', { "Type": "A", <-- "Name": "test", <-- "Address": "127.0.0.1" }) --- namecheap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/namecheap.py b/namecheap.py index 05911ca..06d7f19 100644 --- a/namecheap.py +++ b/namecheap.py @@ -395,8 +395,8 @@ def domains_dns_delHost(self, domain, host_record): Example: api.domains_dns_delHost('example.com', { - "RecordType": "A", - "HostName": "test", + "Type": "A", + "Name": "test", "Address": "127.0.0.1" }) """