Import Products

POST REST API request for suppliers, requiring a JSON body and an authorization token, in order to import products.

Request

HTTP MethodPOST
URLStagehttps://api.stage.ananastest.com/order/api/v1/supplier-integration/products/import
Productionhttps://api.ananas.rs/order/api/v1/supplier-integration/products/import
HTTP Headers
Header nameHeader value
AuthorizationBearer {access_token}

Request Body:

Fields nameTypeDescription
productsForImportList<ImportProductRequest>List of products for import

ImportProductRequest

Fields nameTypeDescription
eanStringEAN (European Article Number)
externalIdStringUnique ID in supplier's system
nameStringProduct name
descriptionStringProduct description
brandStringProduct brand
specificationsStringProduct specifications
coverImageStringURL to the image
galleryStringList of URLs to the images
stockLevelIntegerStock level
purchasePriceBigDecimalPurchase price of product
skuStringSKU

Example of the request:

Click to copy
Success!
{
    "productsForImport":[
        {
            "ean": "700222111331",
            "externalId": "samsungevoakvafor1",
            "name": "Samsung EVO",
            "description": "SSD disk.",
            "brand": "Samsung",
            "specifications": "{\"color\": \"Red\", \"size\": \"M\"}",
            "coverImage": "https://img.gigatron.rs/img/products/large/5a65fe2f19ae6db91133f3c143a15e24.png",
            "gallery": [
                "https://img.gigatron.rs/img/products/large/5a65fe2f19ae6db91133f3c143a15e24.png"
            ],
            "stockLevel": 100,
            "purchasePrice": 6999,
            "sku": "sku1"
        }
    ]
}

Response

Response is a collection of responses for each product sent for import.

Field NameTypeDescription
eanStringEAN (European Article Number)
externalIdStringUnique ID in supplier's system
skuStringSKU
successBooleanIndicates if import is successful
errorsList<String>List of error messages in case of failed product import

Example of response:

JSON:

Click to copy
Success!
[
    {
        "ean": "700222111331",
        "externalId": "externalId1",
        "sku": "sku1",
        "success": true,
        "errors": null
    },
    {
        "ean": "123123123123",
        "externalId": "externalId2",
        "sku": "sku2",
        "success": false,
        "errors": [
            "Product name is required."
        ]
    }
]
Copyright © Ananas 2023. All right reserved.