Product

The customer model

IdProduct

The ID of the Product to return.

IdProduct

The ID of the Product to return.

Reference

The reference of the Product.

Exemple of query

				
					var axios = require('axios');

var config = {
    method: 'get',
    url: 'https://dev.digipart.fr/api/products/{IdProduct}',
    headers: {
        'Cookie': 'PHPSESSID=24e3f618fffcf05c73fb1a71ead2463c'
    }
};

axios(config)
    .then(function(response) {
        console.log(JSON.stringify(response.data));
    })
    .catch(function(error) {
        console.log(error);
    });
				
			

Exemple of response

				
					[
    {
        "IdProduct": "4116",
        "Reference": "ROPPA826-Z1826A",
        "ProductDescription": [
            {
                "IdLang": "1",
                "Title": "Titre de produit",
                "Description": "<p>Description longue au format html de mon produit</p>",
                "DescriptionShort": "<p>Description courte au format html de mon produit</p>"
            },
            {
                "IdLang": "2",
                "Title": "Title of my product",
                "Description": "<p>Long description in html format of my product</p>",
                "DescriptionShort": "<p>Short description in html format of my product</p>"            }
        ],
        "ProductImagesUrl": [
            {
                "ImagePosition": 0,
                "ProductImageUrl": "https://cdn.digipart.fr/upload/images/retouched/4116-ROPPA826-Z1826A-54046.jpg",
                "ProductImageThumbnailUrl": "https://cdn.digipart.fr/upload/images/retouched/thumb/thumbnail-4116-ROPPA826-Z1826A-54046.jpg"
            },
            {
                "ImagePosition": 1,
                "ProductImageUrl": "https://cdn.digipart.fr/upload/images/retouched/4116-ROPPA826-Z1826A-8.jpg",
                "ProductImageThumbnailUrl": "https://cdn.digipart.fr/upload/images/retouched/thumb/thumbnail-4116-ROPPA826-Z1826A-8.jpg"
            },
            {
                "ImagePosition": 2,
                "ProductImageUrl": "https://cdn.digipart.fr/upload/images/retouched/4116-ROPPA826-Z1826A-54048.jpg",
                "ProductImageThumbnailUrl": "https://cdn.digipart.fr/upload/images/retouched/thumb/thumbnail-4116-ROPPA826-Z1826A-54048.jpg"
            },
            {
                "ImagePosition": 3,
                "ProductImageUrl": "https://cdn.digipart.fr/upload/images/retouched/4116-ROPPA826-Z1826A-54051.jpg",
                "ProductImageThumbnailUrl": "https://cdn.digipart.fr/upload/images/retouched/thumb/thumbnail-4116-ROPPA826-Z1826A-54051.jpg"
            },
            {
                "ImagePosition": 4,
                "ProductImageUrl": "https://cdn.digipart.fr/upload/images/retouched/4116-ROPPA826-Z1826A-54047.jpg",
                "ProductImageThumbnailUrl": "https://cdn.digipart.fr/upload/images/retouched/thumb/thumbnail-4116-ROPPA826-Z1826A-54047.jpg"
            },
            {
                "ImagePosition": 5,
                "ProductImageUrl": "https://cdn.digipart.fr/upload/images/retouched/4116-ROPPA826-Z1826A-54050.jpg",
                "ProductImageThumbnailUrl": "https://cdn.digipart.fr/upload/images/retouched/thumb/thumbnail-4116-ROPPA826-Z1826A-54050.jpg"
            },
            {
                "ImagePosition": 6,
                "ProductImageUrl": "https://cdn.digipart.fr/upload/images/retouched/4116-ROPPA826-Z1826A-54494.jpg",
                "ProductImageThumbnailUrl": "https://cdn.digipart.fr/upload/images/retouched/thumb/thumbnail-4116-ROPPA826-Z1826A-54494.jpg"
            }
        ],
        "GhostImageUrl": "https://cdn.digipart.fr/upload/images/retouched/",
        "ProductVideoUrl": null,
        "Attributes": [
            {
                "Size": "S",
                "Color": "Blue",
                "Quantity": "1"
            },
            {
                "Size": "M",
                "Color": "Blue",
                "Quantity": "0"
            },
            {
                "Size": "L",
                "Color": "Blue",
                "Quantity": "0"
            },
            {
                "Size": "XL",
                "Color": "Blue",
                "Quantity": "1"
            }
        ],
        "Prices": [
            {
                "InPromotion": "true",
                "RegularPrices": [
                    {
                        "TaxIncl": "149.00",
                        "TaxExcl": "124.17"
                    }
                ],
                "PromotionType": [
                    {
                        "Type": "percentage",
                        "Name": "Soldes 30%"
                    }
                ],
                "PromotionPrices": [
                    {
                        "TaxIncl": "104.3",
                        "TaxExcl": "86.92"
                    }
                ],
                "PromotionSchedule": [
                    {
                        "StartDate": "2022-09-01 00:01:00",
                        "EndDate": "2022-10-31 23:59:00"
                    }
                ]
            }
        ],
        "ProductRelationShip": [
            {
                "IdProduct": "4216",
                "Reference": "ROPPA826-L151642",
                "Color": "L151642",
                "ProductDescription": [
                    [
                        {
                            "Title": "Titre de produit",
                            "Description": "<p>Description longue au format html de mon produit</p>",
                            "IdLang": "1"
                        },
                        {
                            "Title": "Title of my product",
                            "Description": "<p>Description longue au format html de mon produit</p>",
                            "IdLang": "2"
                        }
                    ]
                ],
                "ProductImageUrl": "https://cdn.digipart.fr/upload/images/retouched/thumb/thumbnail-4216-ROPPA826-L151642-55213.jpg"
            }
        ]
    }
]