AI-generated Key Takeaways
-
This document details how to move a third party chrome profile user to a destination organizational unit.
-
The API uses a POST request to a URL including the customer and user IDs in the path.
-
The request body specifies the destination organizational unit ID for the user.
-
A successful response includes the details of the moved third party profile user.
-
The method requires the
https://www.googleapis.com/auth/chrome.management.profiles
authorization scope.
- HTTP request
- Path parameters
- Request body
- Response body
- Authorization scopes
- ThirdPartyProfileUser
- Try it!
Moves a third party chrome profile user to a destination OU. All profiles associated to that user will be moved to the destination OU.
HTTP request
POST https://chromemanagement.googleapis.com/v1/{name=customers/*/thirdPartyProfileUsers/*}:move
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
name |
Required. Format: customers/{customer_id}/thirdPartyProfileUsers/{third_party_profile_user_id} |
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "destinationOrgUnit": string } |
Fields | |
---|---|
destinationOrgUnit |
Required. Destination organizational unit where the third party chrome profile user will be moved to. |
Response body
Response for thirdPartyProfileUsers.move method.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"thirdPartyProfileUser": {
object ( |
Fields | |
---|---|
thirdPartyProfileUser |
Output only. The moved third party profile user. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/chrome.management.profiles
ThirdPartyProfileUser
A representation of non-Google (third party) user that is associated with a managed Chrome profile.
JSON representation |
---|
{ "name": string, "orgUnitId": string } |
Fields | |
---|---|
name |
Identifier. Format: customers/{customer_id}/thirdPartyProfileUsers/{third_party_profile_user_id} |
orgUnitId |
Output only. The ID of the organizational unit assigned to the user. |