Operation Id:
products/descriptions/put [Official Documentaction]
Methods
- products Array<Object>
- productIdent Object
- productDescriptionsLangData Array<Object>
- productAuctionDescriptionsData Array<Object>
- productId value: number|string
Examples
This function retrieves the product description of a specific product identifier (id: 33) in Polish language and assigns it as the product name "Krzesło Pavon".
const result = await idosellRequest.putProductsDescriptions
.productIdent({"productIdentType":"id","identValue":"33"})
.productDescriptionsLangData([{"langId":"pol","productName":"Krzesło Pavon"}])
.exec()
This function retrieves the product description of a specific product identifier (id: 33) in Polish language and assigns it as the product name "Krzesło Pavon".
const result = await idosellRequest.putProductsDescriptions
.productId(33)
.productDescriptionsLangData([{"langId":"pol","productName":"Krzesło Pavon"}])
.exec()