एडमिन SDK Enterprise लाइसेंस मैनेजर की सेवा

Admin SDK Enterprise लाइसेंस मैनेजर सेवा की मदद से, Apps Script में Admin SDK Enterprise लाइसेंस मैनेजर एपीआई का इस्तेमाल किया जा सकता है. इस एपीआई की मदद से, डोमेन एडमिन उपयोगकर्ताओं को लाइसेंस असाइन कर सकते हैं, अपडेट कर सकते हैं, वापस पा सकते हैं, और मिटा सकते हैं.

रेफ़रंस

इस सेवा के बारे में ज़्यादा जानकारी के लिए, Admin SDK Enterprise License Manager API का रेफ़रंस दस्तावेज़ देखें. Apps Script की सभी बेहतर सेवाओं की तरह, Admin SDK Enterprise License Manager सेवा भी सार्वजनिक एपीआई के जैसे ही ऑब्जेक्ट, तरीकों, और पैरामीटर का इस्तेमाल करती है. ज़्यादा जानकारी के लिए, मेथड सिग्नेचर तय करने का तरीका लेख पढ़ें.

समस्याओं की शिकायत करने और अन्य सहायता पाने के लिए, एडमिन SDK Enterprise License Manager की सहायता गाइड देखें.

नमूना कोड

यहां दिए गए सैंपल कोड में, एपीआई के वर्शन 1 का इस्तेमाल किया गया है.

डोमेन के लिए लाइसेंस असाइनमेंट की सूची पाना

यह सैंपल, डोमेन में मौजूद उपयोगकर्ताओं के लिए लाइसेंस असाइनमेंट को लॉग करता है. इसमें प्रॉडक्ट आईडी और SKU आईडी भी शामिल है. नतीजों की पूरी सूची ऐक्सेस करने के लिए, पेज टोकन के इस्तेमाल पर ध्यान दें.

advanced/adminSDK.gs
/**
 * Logs the license assignments, including the product ID and the sku ID, for
 * the users in the domain. Notice the use of page tokens to access the full
 * list of results.
 */
function getLicenseAssignments() {
  const productId = 'Google-Apps';
  const customerId = 'example.com';
  let assignments = [];
  let pageToken = null;
  do {
    const response = AdminLicenseManager.LicenseAssignments.listForProduct(productId, customerId, {
      maxResults: 500,
      pageToken: pageToken
    });
    assignments = assignments.concat(response.items);
    pageToken = response.nextPageToken;
  } while (pageToken);
  // Print the productId and skuId
  for (const assignment of assignments) {
    console.log('userId: %s, productId: %s, skuId: %s',
        assignment.userId, assignment.productId, assignment.skuId);
  }
}

किसी उपयोगकर्ता के लिए लाइसेंस असाइनमेंट डालना

इस सैंपल में, किसी उपयोगकर्ता के लिए लाइसेंस असाइन करने का तरीका बताया गया है.

advanced/adminSDK.gs
/**
 * Insert a license assignment for a user, for a given product ID and sku ID
 * combination.
 * For more details follow the link
 * https://developers.google.com/admin-sdk/licensing/reference/rest/v1/licenseAssignments/insert
 */
function insertLicenseAssignment() {
  const productId = 'Google-Apps';
  const skuId = 'Google-Vault';
  const userId = 'marty@hoverboard.net';
  try {
    const results = AdminLicenseManager.LicenseAssignments
        .insert({userId: userId}, productId, skuId);
    console.log(results);
  } catch (e) {
    // TODO (developer) - Handle exception.
    console.log('Failed with an error %s ', e.message);
  }
}