Sentry · Arazzo Workflow

Sentry Invite a Member and Onboard to a Team

Version 1.0.0

Invite a new member to an organization, confirm the invite, add them to a team, and verify the roster.

1 workflow 1 source API 1 provider
View Spec View on GitHub APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time MonitoringArazzoWorkflows

Provider

sentry-system

Workflows

invite-member-onboard-team
Invite an organization member and add them to a team.
Invites a member to the organization by email, confirms the new member, adds them to the supplied team, and lists the team members to verify the addition.
4 steps inputs: email, organizationIdOrSlug, role, teamIdOrSlug outputs: memberEmail, memberId
1
inviteMember
Invite a member to the organization by email with the supplied role.
2
confirmMember
Retrieve the newly invited member to confirm the invitation before onboarding them onto a team.
3
addToTeam
Add the confirmed member to the target team.
4
verifyRoster
List the team's members to verify the newly onboarded member appears on the roster.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sentry Invite a Member and Onboard to a Team
  summary: Invite a new member to an organization, confirm the invite, add them to a team, and verify the roster.
  description: >-
    The people-onboarding flow spanning organization membership and team
    assignment. The workflow invites a member to the organization by email,
    retrieves the created member to confirm the invite, adds that member to a
    target team, and lists the team members to verify the onboarding. 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: membersApi
  url: ../openapi/sentry-system-members-api-openapi.yml
  type: openapi
workflows:
- workflowId: invite-member-onboard-team
  summary: Invite an organization member and add them to a team.
  description: >-
    Invites a member to the organization by email, confirms the new member,
    adds them to the supplied team, and lists the team members to verify the
    addition.
  inputs:
    type: object
    required:
    - organizationIdOrSlug
    - email
    - role
    - teamIdOrSlug
    properties:
      organizationIdOrSlug:
        type: string
        description: The ID or slug of the organization.
      email:
        type: string
        description: The email address of the person to invite.
      role:
        type: string
        description: The organization role for the member (e.g. member, admin, manager).
      teamIdOrSlug:
        type: string
        description: The ID or slug of the team to onboard the member onto.
  steps:
  - stepId: inviteMember
    description: >-
      Invite a member to the organization by email with the supplied role.
    operationId: addOrganizationMember
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    requestBody:
      contentType: application/json
      payload:
        email: $inputs.email
        role: $inputs.role
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      memberId: $response.body#/id
  - stepId: confirmMember
    description: >-
      Retrieve the newly invited member to confirm the invitation before
      onboarding them onto a team.
    operationId: retrieveOrganizationMember
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: member_id
      in: path
      value: $steps.inviteMember.outputs.memberId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      memberId: $response.body#/id
      memberEmail: $response.body#/email
  - stepId: addToTeam
    description: >-
      Add the confirmed member to the target team.
    operationId: addMemberToTeam
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: member_id
      in: path
      value: $steps.confirmMember.outputs.memberId
    - name: team_id_or_slug
      in: path
      value: $inputs.teamIdOrSlug
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      addStatus: $statusCode
  - stepId: verifyRoster
    description: >-
      List the team's members to verify the newly onboarded member appears on
      the roster.
    operationId: listTeamMembers
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: team_id_or_slug
      in: path
      value: $inputs.teamIdOrSlug
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstMemberId: $response.body#/0/id
  outputs:
    memberId: $steps.confirmMember.outputs.memberId
    memberEmail: $steps.confirmMember.outputs.memberEmail

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/sentry-system-invite-member-onboard-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.