Seismic · Arazzo Workflow

Seismic Add a User to a Group

Version 1.0.0

Resolve a group by name, add a user to it, and confirm the membership.

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

Provider

seismic

Workflows

add-user-to-group
Add a user to a named group and confirm the membership.
Resolves a group by name, confirms it exists, adds the user as a member, and lists the group members to verify the result.
4 steps inputs: groupName, userId outputs: groupId, memberCount
1
findGroup
Find the group by name, returning the first match.
2
getGroup
Read the group detail to confirm it exists before adding the member.
3
addMember
Add the supplied user as a member of the resolved group.
4
listMembers
List the group members to verify the user was added.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Seismic Add a User to a Group
  summary: Resolve a group by name, add a user to it, and confirm the membership.
  description: >-
    A membership management flow. The workflow finds a group by name, reads the
    group detail to confirm it, adds the supplied user as a member, and lists
    the group members to verify the addition. 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: groupsApi
  url: ../openapi/seismic-groups-api-openapi.yml
  type: openapi
workflows:
- workflowId: add-user-to-group
  summary: Add a user to a named group and confirm the membership.
  description: >-
    Resolves a group by name, confirms it exists, adds the user as a member,
    and lists the group members to verify the result.
  inputs:
    type: object
    required:
    - groupName
    - userId
    properties:
      groupName:
        type: string
        description: Name of the group to add the user to.
      userId:
        type: string
        description: ID of the user to add to the group.
  steps:
  - stepId: findGroup
    description: Find the group by name, returning the first match.
    operationId: listGroups
    parameters:
    - name: query
      in: query
      value: $inputs.groupName
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groupId: $response.body#/items/0/id
  - stepId: getGroup
    description: Read the group detail to confirm it exists before adding the member.
    operationId: getGroup
    parameters:
    - name: groupId
      in: path
      value: $steps.findGroup.outputs.groupId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groupId: $response.body#/id
      name: $response.body#/name
  - stepId: addMember
    description: Add the supplied user as a member of the resolved group.
    operationId: addGroupMember
    parameters:
    - name: groupId
      in: path
      value: $steps.getGroup.outputs.groupId
    requestBody:
      contentType: application/json
      payload:
        userId: $inputs.userId
    successCriteria:
    - condition: $statusCode == 201
  - stepId: listMembers
    description: List the group members to verify the user was added.
    operationId: listGroupMembers
    parameters:
    - name: groupId
      in: path
      value: $steps.getGroup.outputs.groupId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      memberCount: $response.body#/totalCount
  outputs:
    groupId: $steps.getGroup.outputs.groupId
    memberCount: $steps.listMembers.outputs.memberCount

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/seismic-add-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.