IntegrationsGoogle workspaceActions
Update Google Workspace user
Update a Workspace user.
users.update · Google Workspace · v1
Details
Scopes
https://www.googleapis.com/auth/admin.directory.user
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_key | string | Yes | minLength 1 |
given_name | string | No | — |
family_name | string | No | — |
org_unit_path | string | No | — |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | — |
primary_email | string | Yes | — |
name | object | No | additionalProperties false |
name.given_name | string | No | — |
name.family_name | string | No | — |
name.full_name | string | No | — |
suspended | boolean | Yes | — |
org_unit_path | string | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"user_key": {
"type": "string",
"minLength": 1
},
"given_name": {
"type": "string"
},
"family_name": {
"type": "string"
},
"org_unit_path": {
"type": "string"
}
},
"required": [
"user_key"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"primary_email": {
"type": "string"
},
"name": {
"type": "object",
"additionalProperties": false,
"properties": {
"given_name": {
"type": "string"
},
"family_name": {
"type": "string"
},
"full_name": {
"type": "string"
}
}
},
"suspended": {
"type": "boolean"
},
"org_unit_path": {
"type": "string"
}
},
"required": [
"id",
"primary_email",
"suspended"
]
}