Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.8 kB
18
Indexable
Never
<script type="text/javascript">
    (window["rrApiOnReady"] = window["rrApiOnReady"] || []).push(function() {
        retailrocket.productsGroup.post({
            "groupId": <group ID, distinct from group ID for multioptional page>,
            "name": "<string>",
            "price": 777,
            "pictureUrl": "http://example.com/path/to/Photo.jpg",
            "url": "https://www.multiopticas.com/es/hombre/mo-blocks-kiss-azul/mo-blocks-kiss.html?dwvar_mo-blocks-kiss_color=a-black-carey&cgid=productos%20blue%20stop#start=29",
            "isAvailable": true,			
            "categoryPaths": ["Gafas luz azul"],
            "description": "Some text description",
            "products": {
"<product id, can be the same as group ID>": {
                       "isAvailable": <bool>,
                       "name": "<string>",
                       "color": "<string>",
                       "size": "<string>",
                       "url": "https://www.multiopticas.com/es/hombre/mo-blocks-kiss-azul/mo-blocks-kiss.html?dwvar_mo-blocks-kiss_color=a-black-carey&cgid=productos%20blue%20stop#start=29",
                       "pictureUrl": "<string>",
                       "price": 59,
                       "oldPrice": <decimal>,
                       "description": "<string>",
                       "params": {
                           "<custom parameter 1 name>": "<custom parameter 1 value>",
                           "<custom parameter 2 name>": "<custom parameter 2 value>",
                           "<custom parameter N name>": "<custom parameter N value>"
                       }	
                },
            "vendor": "Brand name",
            "model": "Model name",
            "typePrefix": "Product type",
            "oldPrice": 999		
        });

        rrApi.groupView([<product IDs>]);
    });
</script>