Products
Get a product with name "iPhone"
GET http://localhost:59318/odata/v1/Products?$top=1&$filter=Name eq 'iPhone'Get child products of grouped product with ID 210
GET http://localhost:59318/odata/v1/Products?$filter=ParentGroupedProductId eq 210Calculate the final price of a product
POST http://localhost:59318/odata/v1/Products(123)/CalculatePrice
{ "forListing": false, "quantity": 1 }{
"@odata.context": "http://localhost:59318/odata/v1/$metadata
#Smartstore.Web.Api.Models.Catalog.CalculatedProductPrice",
"ProductId": 123,
"CurrencyId": 5,
"CurrencyCode": "EUR",
"FinalPrice": 43.07800000,
"RegularPrice": null,
"RetailPrice": 47.58810000,
"OfferPrice": null,
"ValidUntilUtc": null,
"PreselectedPrice": null,
"LowestPrice": null,
"DiscountAmount": 0,
"Saving": {
"HasSaving": true,
"SavingPrice": 47.58810000,
"SavingPercent": 9,
"SavingAmount": 4.51010000
}
}Assign category with ID 9 to product with ID 1
Assign manufacturer with ID 12 to product with ID 1
Delete assignment of image 66 to product 1
Upload product images
Managing attributes
Create attribute combinations
Search products
Last updated
Was this helpful?