Skip to main content
FuseFuse
IntegrationsGoogle workspaceActions

Get Google Workspace user

Get one Workspace user by key.

Agent markdown

users.get · Google Workspace · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • https://www.googleapis.com/auth/admin.directory.user.readonly

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
user_keystringYesminLength 1

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
primary_emailstringYes
nameobjectNoadditionalProperties false
name.given_namestringNo
name.family_namestringNo
name.full_namestringNo
suspendedbooleanYes
org_unit_pathstringNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user_key": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "user_key"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "primary_email": {
      "type": "string"
    },
    "name": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "given_name": {
          "type": "string"
        },
        "family_name": {
          "type": "string"
        },
        "full_name": {
          "type": "string"
        }
      }
    },
    "suspended": {
      "type": "boolean"
    },
    "org_unit_path": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "primary_email",
    "suspended"
  ]
}