04-20-2023 11:39 AM
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