GET /v1/products?raw=true HTTP/1.1
Accept-Encoding: gzip
Authorization:   Bearer <api-access-token>
var Product = Clayful.Product;

var options = {
    query: {
        raw: true
    }
};

Product.list(options, function(err, response) {

    if (err) {
        throw err;
    }
    
    console.log(response.data);

});
const Product = Clayful.Product;

const options = {
    query: {
        raw: true
    }
};

Product.list(options, (err, response) => {

    if (err) {
        throw err;
    }

    console.log(response.data);

});
use Clayful\Product;

$options = array(
    'query' => array(
        'raw' => true
    )
);

$response = Product::query($options);

print_r($response->data);
Product = Clayful.Product

options = {
    'query': {
        'raw': True
    }
}

response = Product.list(options)

print(response.data)
Product = Clayful::Product

options = {
    'query' => {
        'raw' => true
    }
}

response = Product.list(options)

puts response.data