Operation Id:
products/descriptions/put [Official Documentaction]
Methods
- products Array<Object>
- productIdent Object
- productDescriptionsLangData Array<Object>
- productAuctionDescriptionsData Array<Object>
- productId value: number|string
- setText text: string, type: "productName"|"productAuctionName"|"productPriceComparerName"|"productDescription"|"productLongDescription"|"productMetaTitle"|"productMetaDescription"|"productMetaKeywords", language: string, shopId: 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".
Loading editor...
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".
Loading editor...
const result = await idosellRequest.putProductsDescriptions
.productId(33)
.productDescriptionsLangData([{
"langId":"pol",
"productName":"Krzesło Pavon"
}])
.exec();