Cross-Provider Workflow

Group Membership Sync Across Entra and Google Workspace

Version 1.0.0

Create a matching group in Microsoft Entra ID and Google Workspace.

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

Providers Orchestrated

microsoft-entra google-workspace

Workflows

sync-group-entra-google
Create a matching access group in Entra and Google Workspace.
Creates a security group in Microsoft Entra ID and then creates a matching group in Google Workspace, carrying the display name across both.
2 steps inputs: description, displayName, googleEmail, googleName, mailNickname outputs: entraGroupId, googleGroupEmail, googleGroupId
1
create-entra-group
$sourceDescriptions.entraApi.createGroup
Create the security group in Microsoft Entra ID.
2
create-google-group
$sourceDescriptions.googleWorkspaceApi.insertGroup
Create the matching group in Google Workspace.

Source API Descriptions

Arazzo Workflow Specification

id-group-membership-sync-entra-google.yml Raw ↑
arazzo: 1.0.1
info:
  title: Group Membership Sync Across Entra and Google Workspace
  summary: Create a matching group in Microsoft Entra ID and Google Workspace.
  description: >-
    A group-provisioning workflow that establishes a parallel access group in two
    directories. Creates a security group in Microsoft Entra ID, then creates a
    matching group in Google Workspace so membership and access policies can be
    kept in lockstep across both identity ecosystems.
  version: 1.0.0
sourceDescriptions:
  - name: entraApi
    url: https://raw.githubusercontent.com/api-evangelist/microsoft-entra/refs/heads/main/openapi/microsoft-entra-groups-api-openapi.yml
    type: openapi
  - name: googleWorkspaceApi
    url: https://raw.githubusercontent.com/api-evangelist/google-workspace/refs/heads/main/openapi/google-workspace-groups-api-openapi.yml
    type: openapi
workflows:
  - workflowId: sync-group-entra-google
    summary: Create a matching access group in Entra and Google Workspace.
    description: >-
      Creates a security group in Microsoft Entra ID and then creates a matching
      group in Google Workspace, carrying the display name across both.
    inputs:
      type: object
      properties:
        displayName:
          type: string
        mailNickname:
          type: string
        googleEmail:
          type: string
        googleName:
          type: string
        description:
          type: string
    steps:
      - stepId: create-entra-group
        description: Create the security group in Microsoft Entra ID.
        operationId: $sourceDescriptions.entraApi.createGroup
        requestBody:
          contentType: application/json
          payload:
            displayName: $inputs.displayName
            mailEnabled: false
            mailNickname: $inputs.mailNickname
            securityEnabled: true
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          entraGroupId: $response.body#/id
      - stepId: create-google-group
        description: Create the matching group in Google Workspace.
        operationId: $sourceDescriptions.googleWorkspaceApi.insertGroup
        requestBody:
          contentType: application/json
          payload:
            email: $inputs.googleEmail
            name: $inputs.googleName
            description: $inputs.description
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          googleGroupId: $response.body#/id
          googleGroupEmail: $response.body#/email
    outputs:
      entraGroupId: $steps.create-entra-group.outputs.entraGroupId
      googleGroupId: $steps.create-google-group.outputs.googleGroupId
      googleGroupEmail: $steps.create-google-group.outputs.googleGroupEmail

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-group-membership-sync-entra-google"
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.