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
ProfileTelegram
146 commands0 envUpdated 2d agoCreated Sep 5, 2026
Back to folder

commands/_apidelete.js

javascript · 20 lines

Raw
1/**#command2name: /apidelete3answer: 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 id=params?String(params).trim():"", reg=Bot.getProperty("api_registry")||{};16  if(!id || !reg[id]){Bot.sendMessage("❌ Use <code>/apidelete API_ID</code>",{parse_mode:"HTML"});return;}17  if(Bot.getProperty("active_reseller_api")===id){Bot.sendMessage("❌ Active API ko pehle <code>/apiset OTHER_ID</code> se change karein.",{parse_mode:"HTML"});return;}18  delete reg[id]; Bot.setProperty("api_registry",reg,"json");19  Bot.sendMessage("✅ API <code>"+id+"</code> removed.",{parse_mode:"HTML"});20} catch(e){Bot.sendMessage("⚠️ API Delete Error: "+e.message);}