IntegrationsGoogle workspaceActions
Reset Google Workspace user password
Reset a Workspace user's password.
users.reset_password · 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 |
password | string | Yes | minLength 8 |
change_password_at_next_login | boolean | No | — |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | — |
primary_email | string | Yes | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"user_key": {
"type": "string",
"minLength": 1
},
"password": {
"type": "string",
"minLength": 8
},
"change_password_at_next_login": {
"type": "boolean"
}
},
"required": [
"user_key",
"password"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"primary_email": {
"type": "string"
}
},
"required": [
"id",
"primary_email"
]
}