DELETE
/
v1
/
product
/
{item_id}
curl --request DELETE \
  --url https://app.getswipe.in/api/partner/v1/product/{item_id} \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "message": "Product added successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

item_id
string
required

The item ID to be deleted

Response

200
application/json
Success
success
boolean

Success flag

Example:

true

message
string

Response message

Example:

"Product added successfully"