IntegrationsGoogle workspaceActions
List Google Workspace groups
List groups in the Workspace directory.
groups.list · Google Workspace · v1
Details
Scopes
https://www.googleapis.com/auth/admin.directory.group.readonly
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
customer | string | No | minLength 1 |
page_token | string | No | — |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
groups | array<object> | Yes | — |
groups[] | object | Yes | additionalProperties false |
groups[].id | string | Yes | — |
groups[].email | string | Yes | — |
groups[].name | string | No | — |
next_page_token | string | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"customer": {
"type": "string",
"minLength": 1
},
"page_token": {
"type": "string"
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"groups": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"email": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"email"
]
}
},
"next_page_token": {
"type": "string"
}
},
"required": [
"groups"
]
}