Google Workspace · Arazzo Workflow

Google Workspace Provision a User

Version 1.0.0

Create a new user account, place it in an organizational unit, and read it back.

1 workflow 1 source API 1 provider
View Spec View on GitHub CalendarCollaborationEmailProductivityStorageVideo ConferencingArazzoWorkflows

Provider

google-workspace

Workflows

provision-user
Create a Google Workspace user in a specific org unit and confirm it.
Creates a user account with the supplied identity and organizational unit assignment, then fetches the new user by its primary email to verify the account was provisioned and to capture its unique id.
2 steps inputs: accessToken, familyName, givenName, orgUnitPath, password, primaryEmail outputs: orgUnitPath, primaryEmail, userId
1
createUser
Create the user account with the supplied identity, password, and org unit assignment, forcing a password change at first login.
2
confirmUser
Read the newly created user back by its primary email to confirm the account exists and capture its full profile.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Google Workspace Provision a User
  summary: Create a new user account, place it in an organizational unit, and read it back.
  description: >-
    The core onboarding flow for Google Workspace. The workflow creates a user
    account with a primary email, name, and starting password, assigning it to a
    target organizational unit in the same request, and then reads the created
    user back to confirm the account exists and to capture its server-assigned
    id. Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-620.20
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-620.20
      capability_name: Identity & Access Management
      spec: google-workspace-users-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: usersApi
  url: ../openapi/google-workspace-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-user
  summary: Create a Google Workspace user in a specific org unit and confirm it.
  description: >-
    Creates a user account with the supplied identity and organizational unit
    assignment, then fetches the new user by its primary email to verify the
    account was provisioned and to capture its unique id.
  inputs:
    type: object
    required:
    - accessToken
    - primaryEmail
    - givenName
    - familyName
    - password
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token with the admin.directory.user scope.
      primaryEmail:
        type: string
        description: The unique primary email address for the new user.
      givenName:
        type: string
        description: The user's first name.
      familyName:
        type: string
        description: The user's last name.
      password:
        type: string
        description: Initial password, 8-100 ASCII characters.
      orgUnitPath:
        type: string
        description: The full org unit path to place the user into (defaults to root /).
        default: /
  steps:
  - stepId: createUser
    description: >-
      Create the user account with the supplied identity, password, and org
      unit assignment, forcing a password change at first login.
    operationId: insertUser
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        primaryEmail: $inputs.primaryEmail
        name:
          givenName: $inputs.givenName
          familyName: $inputs.familyName
        password: $inputs.password
        changePasswordAtNextLogin: true
        orgUnitPath: $inputs.orgUnitPath
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userId: $response.body#/id
      createdEmail: $response.body#/primaryEmail
  - stepId: confirmUser
    description: >-
      Read the newly created user back by its primary email to confirm the
      account exists and capture its full profile.
    operationId: getUser
    parameters:
    - name: userKey
      in: path
      value: $steps.createUser.outputs.createdEmail
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: projection
      in: query
      value: full
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userId: $response.body#/id
      primaryEmail: $response.body#/primaryEmail
      orgUnitPath: $response.body#/orgUnitPath
  outputs:
    userId: $steps.confirmUser.outputs.userId
    primaryEmail: $steps.confirmUser.outputs.primaryEmail
    orgUnitPath: $steps.confirmUser.outputs.orgUnitPath

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/google-workspace-provision-user-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.