সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
অ্যাডমিন SDK Google Workspace রিসেলার পরিষেবা আপনাকে অ্যাপস স্ক্রিপ্টে অ্যাডমিন SDK রিসেলার API ব্যবহার করতে দেয়। এই API অনুমোদিত রিসেলার প্রশাসকদের গ্রাহকের অর্ডার দিতে এবং পরিচালনা করার অনুমতি দেয় Google Workspace মাসিক পোস্ট-পে সাবস্ক্রিপশন।
রেফারেন্স
এই পরিষেবার বিস্তারিত তথ্যের জন্য, অ্যাডমিন SDK-এর জন্য রেফারেন্স ডকুমেন্টেশন দেখুন Google Workspace রিসেলার API। Apps Script-এ সমস্ত উন্নত পরিষেবার মতো, অ্যাডমিন SDK৷Google Workspace রিসেলার পরিষেবা পাবলিক API হিসাবে একই বস্তু, পদ্ধতি এবং পরামিতি ব্যবহার করে। আরও তথ্যের জন্য, দেখুন কিভাবে পদ্ধতি স্বাক্ষর নির্ধারণ করা হয় ।
এই নমুনা গ্রাহক আইডি, তৈরির তারিখ, পরিকল্পনার নাম এবং SKU আইডি সহ সাবস্ক্রিপশনের তালিকা লগ করে। ফলাফলের সম্পূর্ণ তালিকা অ্যাক্সেস করতে পৃষ্ঠা টোকেন ব্যবহার লক্ষ্য করুন।
/** * Logs the list of subscriptions, including the customer ID, date created, plan * name, and the sku ID. Notice the use of page tokens to access the full list * of results. * @see https://developers.google.com/admin-sdk/reseller/reference/rest/v1/subscriptions/list */functiongetSubscriptions(){letresult;letpageToken;do{result=AdminReseller.Subscriptions.list({pageToken:pageToken});for(constsubofresult.subscriptions){constcreationDate=newDate();creationDate.setUTCSeconds(sub.creationTime);console.log('customerID:%s,datecreated:%s,planname:%s,skuid:%s',sub.customerId,creationDate.toDateString(),sub.plan.planName,sub.skuId);}pageToken=result.nextPageToken;}while(pageToken);}
[[["সহজে বোঝা যায়","easyToUnderstand","thumb-up"],["আমার সমস্যার সমাধান হয়েছে","solvedMyProblem","thumb-up"],["অন্যান্য","otherUp","thumb-up"]],[["এতে আমার প্রয়োজনীয় তথ্য নেই","missingTheInformationINeed","thumb-down"],["খুব জটিল / অনেক ধাপ","tooComplicatedTooManySteps","thumb-down"],["পুরনো","outOfDate","thumb-down"],["অনুবাদ সংক্রান্ত সমস্যা","translationIssue","thumb-down"],["নমুনা / কোড সংক্রান্ত সমস্যা","samplesCodeIssue","thumb-down"],["অন্যান্য","otherDown","thumb-down"]],["2025-06-05 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["The Admin SDK Google Workspace Reseller service enables authorized reseller admins to manage Google Workspace subscriptions and place customer orders via Apps Script."],["This advanced service requires prior enabling before use and mirrors the functionality of the Admin SDK Reseller API."],["Comprehensive reference documentation, support resources, and sample code are readily available for developers."],["Sample code showcases how to retrieve and log a list of subscriptions, demonstrating pagination for accessing the complete result set."]]],[]]