Light Mode
List Trashed Products
GET
/products/trashedLast modified: a month ago
This endpoint allows you to fetch a list of deleted products that are associated with the Merchant's store
Request
Query Params
keyword
string
optional
A keyword used to retrieve products matching it.
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
No schema defined
Example
{
"status": 200,
"success": true,
"data": [
{
"id": 200309815,
"image": "https://salla.test/cp/assets/images/placeholder.png",
"type": "product",
"name": "Kendra Borer",
"price": 4006.53,
"quantity": 12
},
{
"id": 450454591,
"image": "https://salla.test/cp/assets/images/placeholder.png",
"type": "product",
"name": "Carlotta Willms",
"price": 5714,
"quantity": 12
}
],
"cursor": {
"current": 1,
"previous": null,
"next": null,
"count": 2
}
}
Last modified: a month ago