How to connect own custom APP with admin panel to work only at the backend?

Topic summary

Goal: automate dynamic jewelry pricing in Shopify based on daily gold/silver rates and custom calculations (metal wastage, making charges by grams/pieces, multi‑metal weights, stone charges).

Proposed approach: build a separate backend app that uses the Shopify Admin API to read all products and update their price fields programmatically. The admin UI (pricing tab) does not need to be customized; updates happen behind the scenes. A scheduled job (e.g., daily) can apply the calculations and push new prices.

Key point: direct integration into the “All Products” admin menu or modifying admin input fields is not supported/necessary. Access to store data and price updates should be done via the Admin API (REST or GraphQL), which allows apps to retrieve and update product data.

Attachments: a screenshot illustrates the admin price field but is not essential to the solution.

Status: ongoing. The main guidance is to use the Admin API; the open question is how to “connect” the app to the admin menu, which is generally not how Shopify apps operate. Next step: implement the backend app and scheduling to update prices via API.

Summarized with AI on March 1. AI used: gpt-5.

Hello,

I am building the online jewelry store with shopify. I need to customize the pricing tab in admin panel.

Here-goes,

As the rate of the gold & silver varies day to day, the price of my product will also get changed everyday. So that I cannot able to change the price for the each and every product on daily basis.

And also I need to do some calculation separately at the back-end and need to arrive the product’s final price.

Like, Need to calculate;

→ Metal wastage

→ Making charge calculation (based on the product either in grams or no.of.pieces)

→ Multimetal weight & price

→ Stone charges

I am ready to go with my own jewelry calculation api with those mentioned features. But, What clarification I need means…

Despite I couldn’t able to modify or customize none of the feature or input fields in admin panel, then how could I able to connect and access my own api with the admin panel.


I need to work on the pricing with my own api instead of adding price in the highlighted part in the admin panel.

I will be adding products and other information in the All Products tab. But need to add price through my own app.

Note: This App is only for admin purpose at the back-end not for the customers at UI.

Kindly anybody suggest the solution to connect and access the app along with the admin panel at the backend.

Thanks & Regards,

Abinaya M

It sounds like you need to build your own app which uses the Shopify Admin API to retrieve all your products from your store, then update the prices (based on your own logic). So the Shopify admin panel that you screenshotted will have nothing to do with your solution. The solution is your own app, making pricing changes, behind the scenes. You would run your own backend script, once a day for example, which would update the prices.

Yes. I need to add price for each product with my app. How I can able connect my app with that All product menu in admin?