IntegrationsGoogle workspaceActions
Add Google Workspace group member
Add a member to a Workspace group.
groups.members.add · Google Workspace · v1
Details
Scopes
https://www.googleapis.com/auth/admin.directory.group.member
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
group_key | string | Yes | minLength 1 |
email | string | Yes | minLength 1 |
role | string | No | — |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | — |
email | string | Yes | — |
role | string | Yes | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"group_key": {
"type": "string",
"minLength": 1
},
"email": {
"type": "string",
"minLength": 1
},
"role": {
"type": "string"
}
},
"required": [
"group_key",
"email"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"email": {
"type": "string"
},
"role": {
"type": "string"
}
},
"required": [
"id",
"email",
"role"
]
}