Skip to content

Commit

Permalink
Merge pull request #285 from ramth05/patch-1
Browse files Browse the repository at this point in the history
Fix the get product images path
  • Loading branch information
TomA-R authored Apr 25, 2023
2 parents bd6fd47 + fa09bc9 commit 6417a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bigcommerce/Api/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ public static function getProducts($filter = array())
*/
public static function getProductImages($id)
{
return self::getCollection('/products/' . $id . '/images/', 'ProductImage');
return self::getCollection('/products/' . $id . '/images', 'ProductImage');
}

/**
Expand Down

0 comments on commit 6417a2b

Please sign in to comment.