Products
Create Product
POST/products
Products can be created within your store at Salla by providing the required data in this endpoint.
:::caution[Alert]
Created products status will be...
List Products
GET/products
This endpoint allows you to list all available products related to your store.
:::check[Simplifed, Minimal Response]If you want to receive a simple, ...
Product Details
GET/products/{product}
This endpoint allows you to return specific product details by passing the product as a path parameter.
`products.read`- Products Read Only
Update Product
PUT/products/{product}
This endpoint allows you to update specific product details by passing the product as a path parameter.
`products.read_write`- Products Read & Write...
Delete Product
DELETE/products/{product}
This endpoint allows you to delete a specific product by passing the product as a path parameter.
`products.read_write`- Products Read & Write
Change Product Status
POST/products/{product}/status
This endpoint allows you to update specific product status by passing the product as a path parameter.
`products.read_write`- Products Read & Write
Product Details By SKU
GET/products/sku/{sku}
This endpoint allows you to return specific product details by passing the sku as a path parameter.
`products.read`- Products Read Only
Update Product By SKU
PUT/products/sku/{sku}
This endpoint allows you to update specific product details by passing the sku as a path parameter.
`products.read_write`- Products Read & Write
Delete Product By SKU
DELETE/products/sku/{sku}
This endpoint allows you to delete a specific product by passing the sku as a path parameter.
`products.read_write`- Products Read & Write
Update Product Price By SKU
POST/products/sku/{sku}/price
This endpoint allows you to update specific product price by passing the sku as a path parameter.
`products.read_write`- Products Read & Write
Update Bulk Product Prices
POST/products/prices/bulkPrice
This endpoint allows you to update unlimited bulk products' prices by providing the IDs of the products and the price amounts to be updated.
`pr...
Import Products
POST/products/import
This endpoint allows you to import products from an Excel file.
:::info[Info]Check this Merchant Help Desk article for more.:::products.read_write- P...
Bulk Product Actions
POST/products/actions
This endpoint allows you update multiple products with various actions.
:::check[]If only one product is specified, the update will be applied immedia...