fix /v3/domains/{domain}/ips endpoint

This commit is contained in:
Tom Schlick 2020-02-26 18:39:11 -05:00 committed by David Garcia
parent 25ec6203e1
commit e7c913a17b

View File

@ -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);
}