IntegrationsGoogle workspaceActions
Create Google Workspace group
Create a Workspace group.
groups.create · Google Workspace · v1
Details
Scopes
https://www.googleapis.com/auth/admin.directory.group
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
email | string | Yes | minLength 3; maxLength 320 |
name | string | Yes | minLength 1; maxLength 256 |
description | string | No | maxLength 4096 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | maxLength 256 |
email | string | Yes | maxLength 320 |
name | string | No | maxLength 256 |
description | string | No | maxLength 4096 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"email": {
"type": "string",
"minLength": 3,
"maxLength": 320
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"description": {
"type": "string",
"maxLength": 4096
}
},
"required": [
"email",
"name"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"maxLength": 256
},
"email": {
"type": "string",
"maxLength": 320
},
"name": {
"type": "string",
"maxLength": 256
},
"description": {
"type": "string",
"maxLength": 4096
}
},
"required": [
"id",
"email"
]
}