cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Item with variations not showing variation images

I am using ebay-api Node library to AddFixedPriceItem. I am adding variations but none of the images are available other than the main item images.

 

Here is a snippet of code

 

 

Variations: {
        Variation: filteredStickers.map((sticker) => ({
          StartPrice: sticker.lowestPrice,
          Quantity: sticker.quantity,
          VariationSpecifics: {
            NameValueList: [
              {
                Name: "Sticker",
                Value: `${sticker["sticker-number"]} - ${sticker.title}`,
              },
            ],
          },
          VariationSpecificPictures: {
            VariationSpecificValue: `${sticker["sticker-number"]} - ${sticker.title}`,
            PictureURL: [sticker.imagePath],
          },
        })),
        VariationSpecificsSet: {
          NameValueList: [
            {
              Name: "Sticker",
              Value: filteredStickers.map(
                (sticker) => `${sticker["sticker-number"]} - ${sticker.title}`
              ),
            },
          ],
        },
      },

 

 

Can anyone point me in a direction to resolve my problem?

 

Thanks

 

Message 1 of 1
latest reply
0 REPLIES 0