Cross-Provider Workflow

Okta User to Google Workspace Mailbox Provision

Version 1.0.0

Create an Okta identity, then provision the matching Google Workspace mailbox.

1 workflow 2 source APIs 2 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

okta google-workspace

Workflows

okta-user-google-mailbox
Create an Okta user and provision a Google Workspace mailbox.
Creates a user in Okta, then provisions a matching Google Workspace account so the new hire has identity plus email from day one.
2 steps inputs: email, firstName, googlePassword, googlePrimaryEmail, lastName, login outputs: googleEmail, googleUserId, oktaUserId
1
create-okta-user
$sourceDescriptions.oktaApi.createUser
Create the employee identity in Okta.
2
provision-google-mailbox
$sourceDescriptions.googleWorkspaceApi.insertUser
Provision the matching Google Workspace account.

Source API Descriptions

Arazzo Workflow Specification

id-okta-user-to-google-mailbox-provision.yml Raw ↑
arazzo: 1.0.1
info:
  title: Okta User to Google Workspace Mailbox Provision
  summary: Create an Okta identity, then provision the matching Google Workspace mailbox.
  description: >-
    An onboarding workflow that establishes a new employee identity in Okta as
    the system of record, then provisions a matching Google Workspace account so
    the user has email and collaboration access. Bridges an identity provider and
    a productivity suite for a complete day-one setup.
  version: 1.0.0
sourceDescriptions:
  - name: oktaApi
    url: https://raw.githubusercontent.com/api-evangelist/okta/refs/heads/main/openapi/okta-user-api-openapi.yml
    type: openapi
  - name: googleWorkspaceApi
    url: https://raw.githubusercontent.com/api-evangelist/google-workspace/refs/heads/main/openapi/google-workspace-users-api-openapi.yml
    type: openapi
workflows:
  - workflowId: okta-user-google-mailbox
    summary: Create an Okta user and provision a Google Workspace mailbox.
    description: >-
      Creates a user in Okta, then provisions a matching Google Workspace account
      so the new hire has identity plus email from day one.
    inputs:
      type: object
      properties:
        firstName:
          type: string
        lastName:
          type: string
        email:
          type: string
        login:
          type: string
        googlePrimaryEmail:
          type: string
        googlePassword:
          type: string
    steps:
      - stepId: create-okta-user
        description: Create the employee identity in Okta.
        operationId: $sourceDescriptions.oktaApi.createUser
        requestBody:
          contentType: application/json
          payload:
            profile:
              firstName: $inputs.firstName
              lastName: $inputs.lastName
              email: $inputs.email
              login: $inputs.login
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          oktaUserId: $response.body#/id
      - stepId: provision-google-mailbox
        description: Provision the matching Google Workspace account.
        operationId: $sourceDescriptions.googleWorkspaceApi.insertUser
        requestBody:
          contentType: application/json
          payload:
            primaryEmail: $inputs.googlePrimaryEmail
            name:
              givenName: $inputs.firstName
              familyName: $inputs.lastName
            password: $inputs.googlePassword
            changePasswordAtNextLogin: true
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          googleUserId: $response.body#/id
          googleEmail: $response.body#/primaryEmail
    outputs:
      oktaUserId: $steps.create-okta-user.outputs.oktaUserId
      googleUserId: $steps.provision-google-mailbox.outputs.googleUserId
      googleEmail: $steps.provision-google-mailbox.outputs.googleEmail

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/id-okta-user-to-google-mailbox-provision"
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.