IntegrationsGoogle workspaceActions
Get Google Workspace group
Get one Workspace group by key.
groups.get · Google Workspace · v1
Details
Scopes
https://www.googleapis.com/auth/admin.directory.group.readonly
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
group_key | string | Yes | minLength 1; maxLength 320 |
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": {
"group_key": {
"type": "string",
"minLength": 1,
"maxLength": 320
}
},
"required": [
"group_key"
]
}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"
]
}