IntegrationsGoogle workspaceActions
List Google Workspace user aliases
List aliases for a Workspace user.
users.aliases.list · Google Workspace · v1
Details
Scopes
https://www.googleapis.com/auth/admin.directory.user.alias.readonly
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_key | string | Yes | minLength 1; maxLength 320 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
aliases | array<object> | Yes | maxItems 100 |
aliases[] | object | Yes | additionalProperties false |
aliases[].id | string | Yes | maxLength 256 |
aliases[].alias | string | Yes | maxLength 320 |
aliases[].primary_email | string | Yes | maxLength 320 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"user_key": {
"type": "string",
"minLength": 1,
"maxLength": 320
}
},
"required": [
"user_key"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"aliases": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"maxLength": 256
},
"alias": {
"type": "string",
"maxLength": 320
},
"primary_email": {
"type": "string",
"maxLength": 320
}
},
"required": [
"id",
"alias",
"primary_email"
]
},
"maxItems": 100
}
},
"required": [
"aliases"
]
}