<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M74D8PB" height="0" width="0" style="display:none;visibility:hidden">
Loading
Skip to NavigationSkip to Main Content
How to Assign a License to a Google Workspace User via Okta API
Okta Identity Engine
Okta Integration Network
Overview

This article describes how to assign a license to a Google Workspace user via Okta API. 

Applies To
  • Okta Integration Network (OIN)
  • Google Workspace
  • Okta API
  • Okta Identity Engine (OIE)
Solution

Use the Application Users API to assign users to apps. The license can be specified in the body of the POST request, as shown below:

{
  "id": "00u...",
  "scope": "USER",
  "credentials": {
    "userName": "..."
  },
  "profile": {
    "googleLicenses" : [
        "Cloud Identity"
    ]
  }
}

 

Related References

Loading
How to Assign a License to a Google Workspace User via Okta API