Microsoft Office 365 · Arazzo Workflow

Microsoft Office 365 Onboard User to Group

Version 1.0.0

Create a user, add them to an existing group, then confirm membership.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CloudCollaborationEnterpriseMicrosoftProductivityArazzoWorkflows

Provider

microsoft-office-365

Workflows

onboard-user-to-group
Provision a user and place them into an existing Microsoft 365 group.
Creates a user (201), adds the user to a target group via POST /groups/{group-id}/members/$ref (204), then lists the group's members (200) to confirm the addition.
3 steps inputs: displayName, groupId, mailNickname, password, userPrincipalName outputs: groupId, members, userId
1
createUser
Create a new, enabled user account to be added to the group.
2
addToGroup
Add the newly created user to the target group by binding the user's directory object URL through the members navigation property.
3
confirmMembership
List the group's direct members to confirm the new user now appears in the membership collection.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Microsoft Office 365 Onboard User to Group
  summary: Create a user, add them to an existing group, then confirm membership.
  description: >-
    A complete onboarding chain across the Users and Groups resources of
    Microsoft Graph. The workflow creates a new user, adds that user to an
    existing group by binding the user's directory object reference, and then
    lists the group members to confirm the new user appears. 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: microsoft-office-365-users-api-openapi.yml
      confidence: 0.7
    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/microsoft-office-365-groups-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/microsoft-office-365-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboard-user-to-group
  summary: Provision a user and place them into an existing Microsoft 365 group.
  description: >-
    Creates a user (201), adds the user to a target group via POST
    /groups/{group-id}/members/$ref (204), then lists the group's members (200)
    to confirm the addition.
  inputs:
    type: object
    required:
    - groupId
    - displayName
    - mailNickname
    - userPrincipalName
    - password
    properties:
      groupId:
        type: string
        description: The id of the existing group to add the new user to.
      displayName:
        type: string
        description: The name displayed in the address book for the user.
      mailNickname:
        type: string
        description: The mail alias for the user.
      userPrincipalName:
        type: string
        description: The user principal name (e.g. someone@contoso.com).
      password:
        type: string
        description: The initial password for the user's password profile.
  steps:
  - stepId: createUser
    description: Create a new, enabled user account to be added to the group.
    operationId: createUser
    requestBody:
      contentType: application/json
      payload:
        accountEnabled: true
        displayName: $inputs.displayName
        mailNickname: $inputs.mailNickname
        userPrincipalName: $inputs.userPrincipalName
        passwordProfile:
          forceChangePasswordNextSignIn: true
          password: $inputs.password
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      userId: $response.body#/id
  - stepId: addToGroup
    description: >-
      Add the newly created user to the target group by binding the user's
      directory object URL through the members navigation property.
    operationId: addGroupMember
    parameters:
    - name: group-id
      in: path
      value: $inputs.groupId
    requestBody:
      contentType: application/json
      payload:
        '@odata.id': https://graph.microsoft.com/v1.0/directoryObjects/$steps.createUser.outputs.userId
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      addedUserId: $steps.createUser.outputs.userId
  - stepId: confirmMembership
    description: >-
      List the group's direct members to confirm the new user now appears in
      the membership collection.
    operationId: listGroupMembers
    parameters:
    - name: group-id
      in: path
      value: $inputs.groupId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      members: $response.body#/value
  outputs:
    userId: $steps.createUser.outputs.userId
    groupId: $inputs.groupId
    members: $steps.confirmMembership.outputs.members

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/microsoft-office-365-onboard-user-to-group-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.