Delete Products

You already able to insert and update the items, but you haven't be able to delete any items. So, here is the endpoint to delete your items.

DELETE#

https://api.altoshift.com/api/delete/products

Header#

FieldTypeDescription
x-tokenStringtoken Users unique token

Request Header Example#

{
"x-token": "2b46ad0b537229cf450777dcc655a8620571e18556c473f065f44739"
}

Request Body#

FieldTypeDescription
ids optionalString[]String of product ids

Request Body Example#

{
"ids": [
"SKU1035070005",
"SKU00003120"
]
}

Success 200#

FieldTypeDescription
successBooleanRequest was successful

Success Response Example#

{
"success": true
}