MC4WP_API_v3::get_ecommerce_store_product PHP Method

get_ecommerce_store_product() public method

public get_ecommerce_store_product ( string $store_id, string $product_id, array $args = [] ) : object
$store_id string
$product_id string
$args array
return object
    public function get_ecommerce_store_product($store_id, $product_id, array $args = array())
    {
        $resource = sprintf('/ecommerce/stores/%s/products/%s', $store_id, $product_id);
        return $this->client->get($resource, $args);
    }