Microsoft Active Directory · Arazzo Workflow

Active Directory Transfer User Between Groups

Version 1.0.0

Resolve a user and two groups by name, remove the user from one group and add them to another.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Active DirectoryAuthenticationAuthorizationDirectory ServicesIdentity ManagementMicrosoft EntraZero TrustArazzoWorkflows

Provider

active-directory

Workflows

transfer-user-between-groups
Move a user from a source group to a destination group.
Resolves a user by UPN and a source and destination group by display name, removes the user from the source group, and adds the user to the destination group.
5 steps inputs: destinationGroupDisplayName, sourceGroupDisplayName, userPrincipalName outputs: destinationGroupId, sourceGroupId, userId
1
findUser
Resolve the user by userPrincipalName, returning at most one match.
2
findSourceGroup
Resolve the source group by display name.
3
findDestinationGroup
Resolve the destination group by display name.
4
removeFromSource
Remove the user's direct membership from the source group.
5
addToDestination
Add the user to the destination group via an OData reference.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Active Directory Transfer User Between Groups
  summary: Resolve a user and two groups by name, remove the user from one group and add them to another.
  description: >-
    A team-transfer pattern. The workflow resolves a user by userPrincipalName,
    resolves both the source and destination groups by display name, removes
    the user's membership from the source group, and adds the user to the
    destination group — moving an identity's access in a single, ordered flow.
    Each step inlines its request so the flow is self-describing.
  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: active-directory-users-api-openapi.yml
      confidence: 0.88
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: groupsApi
  url: ../openapi/active-directory-groups-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/active-directory-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: transfer-user-between-groups
  summary: Move a user from a source group to a destination group.
  description: >-
    Resolves a user by UPN and a source and destination group by display name,
    removes the user from the source group, and adds the user to the
    destination group.
  inputs:
    type: object
    required:
    - userPrincipalName
    - sourceGroupDisplayName
    - destinationGroupDisplayName
    properties:
      userPrincipalName:
        type: string
        description: UPN of the user to transfer.
      sourceGroupDisplayName:
        type: string
        description: Display name of the group to remove the user from.
      destinationGroupDisplayName:
        type: string
        description: Display name of the group to add the user to.
  steps:
  - stepId: findUser
    description: Resolve the user by userPrincipalName, returning at most one match.
    operationId: list-users
    parameters:
    - name: $filter
      in: query
      value: "userPrincipalName eq '$inputs.userPrincipalName'"
    - name: $top
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userId: $response.body#/value/0/id
  - stepId: findSourceGroup
    description: Resolve the source group by display name.
    operationId: list-groups
    parameters:
    - name: $filter
      in: query
      value: "displayName eq '$inputs.sourceGroupDisplayName'"
    - name: $top
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      sourceGroupId: $response.body#/value/0/id
  - stepId: findDestinationGroup
    description: Resolve the destination group by display name.
    operationId: list-groups
    parameters:
    - name: $filter
      in: query
      value: "displayName eq '$inputs.destinationGroupDisplayName'"
    - name: $top
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      destinationGroupId: $response.body#/value/0/id
  - stepId: removeFromSource
    description: Remove the user's direct membership from the source group.
    operationId: remove-group-member
    parameters:
    - name: groupId
      in: path
      value: $steps.findSourceGroup.outputs.sourceGroupId
    - name: memberId
      in: path
      value: $steps.findUser.outputs.userId
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      removedUserId: $steps.findUser.outputs.userId
  - stepId: addToDestination
    description: Add the user to the destination group via an OData reference.
    operationId: add-group-member
    parameters:
    - name: groupId
      in: path
      value: $steps.findDestinationGroup.outputs.destinationGroupId
    requestBody:
      contentType: application/json
      payload:
        '@odata.id': https://graph.microsoft.com/v1.0/users/$steps.findUser.outputs.userId
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      addedUserId: $steps.findUser.outputs.userId
  outputs:
    userId: $steps.findUser.outputs.userId
    sourceGroupId: $steps.findSourceGroup.outputs.sourceGroupId
    destinationGroupId: $steps.findDestinationGroup.outputs.destinationGroupId

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/active-directory-transfer-user-between-groups-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.