From e7c913a17b9296d42905563476f1177f19d3856a Mon Sep 17 00:00:00 2001 From: Tom Schlick Date: Wed, 26 Feb 2020 18:39:11 -0500 Subject: [PATCH] fix /v3/domains/{domain}/ips endpoint --- src/Api/Ip.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/Ip.php b/src/Api/Ip.php index f16757f..dac8db8 100644 --- a/src/Api/Ip.php +++ b/src/Api/Ip.php @@ -51,7 +51,7 @@ class Ip extends HttpApi { Assert::stringNotEmpty($domain); - $response = $this->httpGet(sprintf('/v3/domains/%s/ip', $domain)); + $response = $this->httpGet(sprintf('/v3/domains/%s/ips', $domain)); return $this->hydrateResponse($response, IndexResponse::class); }