ayushyadav7970824760/goldensellingstore_botPublic · Bot Template
AIThis Telegram store bot lets customers browse digital products and plans, apply coupons, add funds via UPI, and receive purchased keys. It includes a full admin panel for managing products, reordering items, setting reseller prices, viewing and removing key stock, configuring UPI payment details and update links, and checking user balances. Co-admins and resellers are supported, and support tickets are forwarded to the admin.
Commercedigital_storeadmin_panelupi_paymentsresellercouponskey_stock
146 commands0 envUpdated 2d agoCreated Sep 5, 2026
commands/_setproductapi.js
javascript · 23 lines
1/**#command2name: /setproductapi3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12try {13 var ownerId=String(Bot.getProperty("owner_id")||"8477746023"), uid=String(chat.chatid), co=Bot.getProperty("co_admin_"+uid);14 if(uid!==ownerId && !co) return;15 var p=(params?String(params).trim():"").split("|").map(function(x){return x.trim();});16 if(p.length<2){Bot.sendMessage("❌ Format: <code>/setproductapi PRODUCT_INDEX | API_ID</code>",{parse_mode:"HTML"});return;}17 var idx=Number(p[0]), apiId=p[1], products=Bot.getProperty("stored_products")||[], reg=Bot.getProperty("api_registry")||{};18 if(!products[idx]){Bot.sendMessage("❌ Product index not found.");return;}19 if(!reg[apiId]){Bot.sendMessage("❌ API ID not found. Use /apilist");return;}20 products[idx].api_id=apiId;21 Bot.setProperty("stored_products",products,"json");22 Bot.sendMessage("✅ <b>Product API Updated</b>\nProduct: <code>"+String(products[idx].name)+"</code>\nAPI: <code>"+apiId+"</code>",{parse_mode:"HTML"});23} catch(e){Bot.sendMessage("⚠️ Product API Error: "+e.message);}