If a product is deleted in SKUSavvy you can easily restore it if you have the product ID (which can be found in the URL of the deleted product).
Using our GraphQL API you can quickly restore a product. The first thing you need to do is locate the URL for the item.
Click into the deleted product and find the URL in your web browser. It will look like the one below:
https://app.skusavvy.com/products/1d9b750a-a156-4a41-a4e0-35eb4caf8846
Copy ONLY the ID at the end of the URL, it will look like the below string:
1d9b750a-a156-4a41-a4e0-35eb4caf8846
Go to the SKUSavvy graphQL API and enter the below query:
mutation productRestore {
productRestore(productId: "your-product-id-here", cascade: true) {
errors {
message
}
product {
name
}
}
}