Microsoft Office 365 · Arazzo Workflow

Microsoft Office 365 Update User Profile

Version 1.0.0

Patch a user's profile properties, then read the user back to verify.

1 workflow 1 source API 1 provider
View Spec View on GitHub CloudCollaborationEnterpriseMicrosoftProductivityArazzoWorkflows

Provider

microsoft-office-365

Workflows

update-user-profile
Update a user's profile and confirm via read-back.
Patches a user via PATCH /users/{user-id} (204 no content), then reads the user via GET /users/{user-id} (200) to verify the updated properties.
2 steps inputs: department, jobTitle, officeLocation, userId outputs: department, jobTitle, userId
1
updateUser
Patch the user with the supplied job title, department, and office location. Only the provided properties change.
2
verifyUser
Read the user back by id to confirm the updated profile properties.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Microsoft Office 365 Update User Profile
  summary: Patch a user's profile properties, then read the user back to verify.
  description: >-
    Maintains an existing user's directory profile. The workflow patches a user's
    job title, department, and office location, then reads the user back by id to
    confirm the changes. Because the update returns 204 with no body, the
    read-back is the only way to observe the new state. 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: usersApi
  url: ../openapi/microsoft-office-365-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: update-user-profile
  summary: Update a user's profile and confirm via read-back.
  description: >-
    Patches a user via PATCH /users/{user-id} (204 no content), then reads the
    user via GET /users/{user-id} (200) to verify the updated properties.
  inputs:
    type: object
    required:
    - userId
    properties:
      userId:
        type: string
        description: The id of the user to update.
      jobTitle:
        type: string
        description: The new job title.
      department:
        type: string
        description: The new department.
      officeLocation:
        type: string
        description: The new office location.
  steps:
  - stepId: updateUser
    description: >-
      Patch the user with the supplied job title, department, and office
      location. Only the provided properties change.
    operationId: updateUser
    parameters:
    - name: user-id
      in: path
      value: $inputs.userId
    requestBody:
      contentType: application/json
      payload:
        jobTitle: $inputs.jobTitle
        department: $inputs.department
        officeLocation: $inputs.officeLocation
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      userId: $inputs.userId
  - stepId: verifyUser
    description: Read the user back by id to confirm the updated profile properties.
    operationId: getUser
    parameters:
    - name: user-id
      in: path
      value: $inputs.userId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userId: $response.body#/id
      jobTitle: $response.body#/jobTitle
      department: $response.body#/department
  outputs:
    userId: $steps.verifyUser.outputs.userId
    jobTitle: $steps.verifyUser.outputs.jobTitle
    department: $steps.verifyUser.outputs.department

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-update-user-profile-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.