Is there an app to track detailed changes in the admin area?

Hello,

is there an application that tracks detailed changes in the Shopify admin? For example, creating a product, changing of settings, changing the price of products, adding new product variants, changing inventory, and the dates of these changes, etc.
Shopify’s store activity log does not provide detailed information about everything that happens in the admin.

Thank you :folded_hands:

Should be pretty straight forward to implement this with our automation app mesa. I’d be happy to take a crack at some workflows for you if you’re interested. I don’t believe there’s any visibility in the API into which users modified things in the admin though if that’s what you were interested in.

Little trick: if you open a product in the admin and stick /events.json at the end of the URL, Shopify shows a tiny log.

Example:
https://admin.shopify.com/store/{your-store-link}/products/9954787197241/events.json

But don’t expect much, it’s only basic stuff like publishing/unpublishing.

If you want everything tracked (and the ability to undo changes), you can use Loggr Product History & Revert.

One distinction that may help here is between change history and change provenance.

A history log can tell you that a price or product field changed. For operational debugging, the more useful record is often: previous known state → actor/system that initiated the change → exact fields affected → resulting live state.

If multiple apps, staff members or integrations can write to the same product, that chain becomes much more useful than a timestamp alone, especially when you later need to determine whether a change was intended or should be reverted.