We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3b10413 + 1e1d3a6 commit 60a04edCopy full SHA for 60a04ed
2 files changed
src/Bigcommerce/Api/Client.php
@@ -1979,7 +1979,7 @@ public static function deleteWebhook($id)
1979
*/
1980
public static function getShippingZones()
1981
{
1982
- return self::getCollection('/shipping/zones/', 'ShippingZone');
+ return self::getCollection('/shipping/zones', 'ShippingZone');
1983
}
1984
1985
/**
test/Unit/Api/Resources/ShippingZoneTest.php
@@ -56,7 +56,7 @@ public function testGetShippingZones()
56
57
$this->connection->expects($this->once())
58
->method('get')
59
- ->with($this->basePath . '/shipping/zones/');
+ ->with($this->basePath . '/shipping/zones');
60
61
Client::getShippingZones();
62
0 commit comments