Google Workspace · Arazzo Workflow

Google Workspace Rename a Group

Version 1.0.0

Read a group, patch its name and description, then confirm the change.

1 workflow 1 source API 1 provider
View Spec View on GitHub CalendarCollaborationEmailProductivityStorageVideo ConferencingArazzoWorkflows

Provider

google-workspace

Workflows

rename-group
Patch a group's name and description and confirm the update.
Reads the group to confirm it exists, patches the supplied name and description, then re-reads the group to confirm the new values.
3 steps inputs: accessToken, description, groupKey, name outputs: description, groupId, name
1
lookupGroup
Read the group by its key to confirm it exists and capture its current name before updating.
2
renameGroup
Patch the group with the new name and description, leaving other properties untouched.
3
confirmRename
Read the group back to confirm the new name and description are now set.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Google Workspace Rename a Group
  summary: Read a group, patch its name and description, then confirm the change.
  description: >-
    Updates the display name and description of an existing group. The workflow
    reads the group to confirm it exists, patches the new name and description
    using patch semantics, and reads it back to confirm the change took effect.
    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: google-workspace-groups-api-openapi.yml
      confidence: 0.75
    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/google-workspace-groups-api-openapi.yml
  type: openapi
workflows:
- workflowId: rename-group
  summary: Patch a group's name and description and confirm the update.
  description: >-
    Reads the group to confirm it exists, patches the supplied name and
    description, then re-reads the group to confirm the new values.
  inputs:
    type: object
    required:
    - accessToken
    - groupKey
    - name
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token with the admin.directory.group scope.
      groupKey:
        type: string
        description: Group email, alias, or unique id of the group to rename.
      name:
        type: string
        description: The new display name for the group.
      description:
        type: string
        description: The new description for the group.
        default: ""
  steps:
  - stepId: lookupGroup
    description: >-
      Read the group by its key to confirm it exists and capture its current
      name before updating.
    operationId: getGroup
    parameters:
    - name: groupKey
      in: path
      value: $inputs.groupKey
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groupId: $response.body#/id
      currentName: $response.body#/name
  - stepId: renameGroup
    description: >-
      Patch the group with the new name and description, leaving other
      properties untouched.
    operationId: patchGroup
    parameters:
    - name: groupKey
      in: path
      value: $inputs.groupKey
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        description: $inputs.description
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groupId: $response.body#/id
      name: $response.body#/name
  - stepId: confirmRename
    description: >-
      Read the group back to confirm the new name and description are now set.
    operationId: getGroup
    parameters:
    - name: groupKey
      in: path
      value: $inputs.groupKey
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groupId: $response.body#/id
      name: $response.body#/name
      description: $response.body#/description
  outputs:
    groupId: $steps.confirmRename.outputs.groupId
    name: $steps.confirmRename.outputs.name
    description: $steps.confirmRename.outputs.description

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/google-workspace-rename-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.