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