Microsoft Teams · Arazzo Workflow

Microsoft Teams Rename Team

Version 1.0.0

Read a team and update its display name and description.

1 workflow 1 source API 1 provider
View Spec View on GitHub ChatCollaborationCommunicationsMicrosoft-365ProductivityVideo ConferencingArazzoWorkflows

Provider

microsoft-teams

Workflows

rename-team
Confirm a team and patch its display name and description.
Reads the team to capture its prior display name, then updates the team with the new display name and description.
2 steps inputs: accessToken, newDescription, newDisplayName, teamId outputs: previousName
1
getTeam
Read the team to confirm it exists and capture its current display name before renaming.
2
updateTeam
Patch the team with the new display name and description. Microsoft Graph returns 204 No Content on success.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Microsoft Teams Rename Team
  summary: Read a team and update its display name and description.
  description: >-
    Renaming a team should preserve its existing identity while changing only the
    presentation fields. This workflow reads the current team to confirm it
    exists and capture its prior name, then patches the team with the new display
    name and description. 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
sourceDescriptions:
- name: teamsApi
  url: ../openapi/microsoft-teams-teams-api-openapi.yml
  type: openapi
workflows:
- workflowId: rename-team
  summary: Confirm a team and patch its display name and description.
  description: >-
    Reads the team to capture its prior display name, then updates the team with
    the new display name and description.
  inputs:
    type: object
    required:
    - accessToken
    - teamId
    - newDisplayName
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer token with TeamSettings.ReadWrite.All scope.
      teamId:
        type: string
        description: The unique identifier of the team to rename.
      newDisplayName:
        type: string
        description: The new display name for the team.
      newDescription:
        type: string
        description: The new description for the team.
  steps:
  - stepId: getTeam
    description: >-
      Read the team to confirm it exists and capture its current display name
      before renaming.
    operationId: getTeam
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: team-id
      in: path
      value: $inputs.teamId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      previousName: $response.body#/displayName
  - stepId: updateTeam
    description: >-
      Patch the team with the new display name and description. Microsoft Graph
      returns 204 No Content on success.
    operationId: updateTeam
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: team-id
      in: path
      value: $inputs.teamId
    requestBody:
      contentType: application/json
      payload:
        displayName: $inputs.newDisplayName
        description: $inputs.newDescription
    successCriteria:
    - condition: $statusCode == 204
  outputs:
    previousName: $steps.getTeam.outputs.previousName

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-teams-rename-team-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.