Hello , i am trying to update ebay description with images and templates using c# console application by calling createOrReplaceInventoryItem api. but its always returning 204.
product = new Product
{
title = bpmProduct.EbayName != null && bpmProduct.EbayName.Length > 80 ? bpmProduct.EbayName.Substring(0, 78) + ".." : bpmProduct.EbayName,
description = bpmProduct.Description.Length > 3998 ? bpmProduct.Description.Substring(0, 3998) : bpmProduct.Description,
}, this is how i call description.i have tried to add template but no use . any suggestion will welcome. please suggest.
Thanks in advance