[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-09-04。"],[[["\u003cp\u003eThis page explains how to use the Cloud Channel API to create email-verified and domain-verified customer accounts for Google Workspace and Chrome.\u003c/p\u003e\n"],["\u003cp\u003eDomain-verified customers gain full admin access to their domain by setting \u003ccode\u003ecustomerType\u003c/code\u003e to \u003ccode\u003edomain\u003c/code\u003e in the API request, while email-verified customers, who do not manage their own domains, should use \u003ccode\u003eteam\u003c/code\u003e for their \u003ccode\u003ecustomerType\u003c/code\u003e in the API request.\u003c/p\u003e\n"],["\u003cp\u003eVerification of customer accounts enhances security and provides access to additional features.\u003c/p\u003e\n"],["\u003cp\u003eCreating both types of customer accounts requires a POST request to \u003ccode\u003ehttps://cloudchannel.googleapis.com/v1/accounts/customers\u003c/code\u003e, including details like \u003ccode\u003ealternateEmail\u003c/code\u003e, \u003ccode\u003ephoneNumber\u003c/code\u003e, and \u003ccode\u003elanguageCode\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eCountry code restrictions apply, it is important to make sure to confirm the customer's country is approved for resale.\u003c/p\u003e\n"]]],[],null,["# Create verified Google Workspace and Google Chrome accounts\n\nThis page helps you use the Cloud Channel API create email- and domain-verified customers for Google Workspace and Chrome accounts. Verification offers [additional account security](https://support.google.com/a/answer/60216) and unlocks extra features for the account.\n\n\u003cbr /\u003e\n\nFor more information on what features you can unlock after verifying an account,\nsee\n[About email-verified and domain-verified accounts](https://support.google.com/chrome/a/answer/10435184).\n\nTo create a new verified customer account, use the following POST request. \n\n POST https://cloudchannel.googleapis.com/v1/accounts/customers\n\nGoogle Workspace and Chrome offer two kinds of customers:\ndomain verified and email verified.\n\nCountry code restrictions apply. Confirm that the customer's country is approved\nfor resale.\n\nCreate domain customers\n-----------------------\n\nDomain verified customers have full admin access to their domain. When you\ncreate a verified customer, set\n[`customerType`](/channel/docs/reference/rest/v1/CloudIdentityInfo#CustomerType)\nto `domain`.\n\nYour JSON request body should resemble the following: \n\n {\n \"customerType\": \"domain\",\n \"alternateEmail\": \"dani@example.com\",\n \"phoneNumber\": \"(949) 555-1234\",\n \"languageCode\": \"en-US\",\n }\n\nA successful response returns an HTTP `200` status code and the following\ninformation: \n\n \"customerType\": \"domain\",\n \"primaryDomain\": \"example.com\"\n \"isDomainVerified\": true,\n \"alternateEmail\": \"dani@example.com\",\n \"phoneNumber\": \"(949) 555-1234\",\n \"languageCode\": \"en-US\",\n \"adminConsoleUri\": \"altostrat.com\"\n\nCreate email customers\n----------------------\n\nEmail verified customers don't own or manage their domain. Set\n[`customerType`](/channel/docs/reference/rest/v1/CloudIdentityInfo#CustomerType)\nto `team` when you create this kind of customer.\n\nYour JSON request body should resemble the following: \n\n {\n \"customerType\": \"team\",\n \"alternateEmail\": \"dani@example.com\",\n \"phoneNumber\": \"(949) 555-1234\",\n \"languageCode\": \"en-US\",\n }\n\nA successful response returns an HTTP `200` status code and the following\ninformation: \n\n \"customerType\": \"team\",\n \"alternateEmail\": \"dani@example.com\",\n \"phoneNumber\": \"(949) 555-1234\",\n \"languageCode\": \"en-US\",\n \"adminConsoleUri\": \"altostrat.com\""]]