संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
Enterprise
संसाधन, किसी संगठन को आपके Android मैनेजमेंट समाधान से बाइंड करता है.
Devices
और Policies
और दोनों किसी एंटरप्राइज़ से जुड़े हों. एक से ज़्यादा एंटरप्राइज़ बाइंडिंग
जो एक संगठन से जुड़े हों. उदाहरण के लिए, हो सकता है कि कोई संगठन
उसके अलग-अलग डिपार्टमेंट या क्षेत्रों के लिए अलग-अलग एंटरप्राइज़ बाइंडिंग.
एंटरप्राइज़ बाइंडिंग बनाने के बुनियादी चरणों के बारे में यहां बताया गया है
क्विकस्टार्ट गाइड.
इस पेज पर, इस प्रोसेस के बारे में ज़्यादा जानकारी दी गई है.
1. साइन अप यूआरएल वापस पाएं
signupUrls.create पर कॉल करें
का इस्तेमाल करके साइन अप यूआरएल को वापस पा सकते हैं और नीचे दिए गए दो पैरामीटर तय कर सकते हैं:
callbackUrl: ऐसा एचटीटीपीएस यूआरएल जिस पर सेटअप विज़र्ड के बाद रीडायरेक्ट करता है
साइन-अप पूरा हुआ. आम तौर पर, यह आपका मैनेजमेंट कंसोल होता है.
projectId: आपका प्रोजेक्ट आईडी.
जवाब में url और name शामिल हैं. url खोलें और name को नोट करें.
2. एंटरप्राइज़ का आईटी एडमिन, साइन अप की प्रोसेस पूरी करता है
url से, आईटी एडमिन को साइन अप करने की प्रोसेस पूरी करने में मदद मिलती है. अगर आपकी ईएमएम नहीं है
को BTE साइन-अप फ़्लो के लिए चालू कर दिया गया है. इसके बाद, आईटी एडमिन को बताएं कि उसे
ऐसा Gmail खाता जो पहले से किसी एंटरप्राइज़ बाइंडिंग से नहीं जुड़ा है.
संगठन को रजिस्टर करने के बाद, साइन-अप फ़्लो इस
आपका callbackUrl. एक enterpriseToken को
callbackUrl.
एंटरप्राइज़ बाइंडिंग बनाने के लिए, कॉल करें
enterprises.create.
यूनीक एंटरप्राइज़ बाइंडिंग आईडी बनाने के अलावा, यह तरीका आपको इस्तेमाल करने की अनुमति देता है.
का इस्तेमाल करें. उदाहरण के लिए, आप
डिवाइस प्रॉविज़निंग (primaryColor) के दौरान मुख्य रंग दिखाया जाता है
नाम या टाइटल (enterpriseDisplayName) और लोगो के साथ
(logo) असली उपयोगकर्ताओं को दिखाया जाता है.
उदाहरण
इस उदाहरण में, एंटरप्राइज़ बनाने के लिए Java क्लाइंट लाइब्रेरी का इस्तेमाल किया गया है
बाइंडिंग और अपना नाम वापस लौटाएं. सैंपल देखें
इस पेज पर जाएं.
privateStringcreateEnterprise(AndroidManagementandroidManagementClient)throwsIOException{SignupUrlsignupUrl=androidManagementClient.signupUrls().create().setProjectId("myProject").setCallbackUrl("https://example.com/myEmmConsole").execute();StringenterpriseToken=displayUrlToAdmin(signupUrl.getUrl());Enterpriseenterprise=androidManagementClient.enterprises().create(newEnterprise()).setProjectId("myProject").setSignupUrlName(signupUrl.getName()).setEnterpriseToken(enterpriseToken).execute();returnenterprise.getName();}/** * Displays the signup URL to the admin and returns the enterprise token which * is generated after the admin goes through the signup flow. This functionality * must be implemented by your management console. */privateStringdisplayUrlToAdmin(Stringurl){...}
[[["समझने में आसान है","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-07-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eAn Enterprise resource in Android Management binds an organization to your EMM solution, enabling management of devices and policies.\u003c/p\u003e\n"],["\u003cp\u003eEMM partners must utilize the Google Play EMM API to establish this enterprise binding for organizations.\u003c/p\u003e\n"],["\u003cp\u003eCreating an enterprise binding involves a three-step process: retrieving a signup URL, having the IT admin complete signup, and finally, using the API to create the binding with specific settings like color and logo.\u003c/p\u003e\n"],["\u003cp\u003eMultiple enterprise bindings can be created for a single organization to accommodate different departments or regions, offering flexibility in management.\u003c/p\u003e\n"]]],["EMM partners managing devices via the Google Play EMM API must use it to create enterprise bindings. This process involves: 1) Retrieving a sign-up URL using `signupUrls.create`, specifying a `callbackUrl` and `projectId`. 2) An IT admin uses the URL to sign up, receiving an `enterpriseToken`. 3) Calling `enterprises.create` to bind, setting display options like `primaryColor`, `enterpriseDisplayName`, and `logo`, using the generated `enterpriseToken` and `SignupUrlName`. Multiple bindings per organization are allowed.\n"],null,["# Create an enterprise binding\n\n| **Note:** EMM partners intending to manage devices for an organization using the Google Play EMM API **must use** the Google Play EMM API to create the enterprise binding. For more information, see the [Guide for Existing EMM Partners](/android/management/existing-emms).\n\nAn [`Enterprise`](/android/management/reference/rest/v1/enterprises)\nresource binds an organization to your Android Management solution.\n[`Devices`](/android/management/reference/rest/v1/enterprises.devices)\nand [`Policies`](/android/management/reference/rest/v1/enterprises.policies)\nboth belong to an enterprise. Multiple enterprise bindings can be\nassociated with a single organization. For example, an organization may want\nseparate enterprise bindings for its different departments or regions.\n\nThe basic steps on how to create an enterprise binding are described in the\n[Quickstart guide](/android/management/quickstart#create_an_enterprise).\nThis page outlines the process in more detail.\n\n### 1. Retrieve the sign up url\n\nCall [`signupUrls.create`](/android/management/reference/rest/v1/signupUrls/create)\nto retrieve the sign up URL and specify the following two parameters:\n\n- `callbackUrl`: An https URL the setup wizard redirects to after sign-up is complete. This is typically your management console.\n- `projectId`: Your project ID.\n\nThe response contains a `url` and `name`. Open the `url` and note the `name`.\n\n### 2. Enterprise IT admin completes the sign up flow\n\nThe `url` guides the IT admin through the sign-up process. If your EMM has not\nbeen enabled for the BTE sign-up flow, then advise the IT admin that they need a\nGmail account that's not already associated with an enterprise binding.\nAfter successfully registering their organization, the sign-up flow redirects to\nyour `callbackUrl`. An `enterpriseToken` is appended to the\n`callbackUrl`.\n\n#### Example\n\n```\nhttps://example.com/?enterpriseToken=EAH2pBTtGCs2K28dqhq5uw0uCyVzYMqGivap4wdlH7KNlPtCmlC8uyl\n```\n\n### 3. Create an enterprise binding\n\nTo create an enterprise binding, call\n[`enterprises.create`](/android/management/reference/rest/v1/enterprises/create).\nIn addition to creating a unique enterprise binding ID, this method allows you\nto define certain binding-specific settings. For instance, you can set the\npredominant color displayed during device provisioning (`primaryColor`), along\nwith the name or title (`enterpriseDisplayName`) and logo\n(`logo`) that's shown to end users.\n\n### Example\n\nThe following example uses the [Java client library]() to create an enterprise\nbinding and return its name. See the [sample](/android/management/sample-app)\npage for more details about using the library. \n\n```carbon\nprivate String createEnterprise(AndroidManagement androidManagementClient)\n throws IOException {\n SignupUrl signupUrl =\n androidManagementClient\n .signupUrls()\n .create()\n .setProjectId(\"myProject\")\n .setCallbackUrl(\"https://example.com/myEmmConsole\")\n .execute();\n\n String enterpriseToken = displayUrlToAdmin(signupUrl.getUrl());\n\n Enterprise enterprise =\n androidManagementClient\n .enterprises()\n .create(new Enterprise())\n .setProjectId(\"myProject\")\n .setSignupUrlName(signupUrl.getName())\n .setEnterpriseToken(enterpriseToken)\n .execute();\n\n return enterprise.getName();\n}\n\n/**\n * Displays the signup URL to the admin and returns the enterprise token which\n * is generated after the admin goes through the signup flow. This functionality\n * must be implemented by your management console.\n */\nprivate String displayUrlToAdmin(String url) {\n ...\n}\n```"]]