MC4WP_API_v3::get_ecommerce_store_customer PHP Method

get_ecommerce_store_customer() public method

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