Treblle · Arazzo Workflow

Treblle Onboard a Project and Its Team

Version 1.0.0

Create a project, invite a teammate to it, and list the resulting member roster.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AnalyticsArtificial IntelligenceDeveloper ExperienceDocumentationGovernanceInsightsObservabilityPlatformSecurityTestingArazzoWorkflows

Provider

treblle

Workflows

onboard-project-and-team
Create a project, invite a member, and confirm the member roster.
Creates a monitoring project, invites a teammate to it, then lists the project members to confirm the invitation.
3 steps inputs: apiKey, inviteEmail, inviteRole, name outputs: members, projectId
1
createProject
Create the monitoring project the team will be invited to.
2
inviteMember
Invite the teammate to the newly created project by email and role.
3
listMembers
List the project's members to confirm the invitation took effect.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Treblle Onboard a Project and Its Team
  summary: Create a project, invite a teammate to it, and list the resulting member roster.
  description: >-
    Stands up a new monitored API and its team in one pass. The workflow creates
    a project, invites a teammate to that project by email and role, and then
    lists the project's members to confirm the roster. 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/treblle-members-api-openapi.yml
  type: openapi
- name: projectsApi
  url: ../openapi/treblle-projects-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboard-project-and-team
  summary: Create a project, invite a member, and confirm the member roster.
  description: >-
    Creates a monitoring project, invites a teammate to it, then lists the
    project members to confirm the invitation.
  inputs:
    type: object
    required:
    - apiKey
    - name
    - inviteEmail
    properties:
      apiKey:
        type: string
        description: Treblle API key passed in the Treblle-Api-Key header.
      name:
        type: string
        description: Display name for the new project.
      inviteEmail:
        type: string
        description: Email address of the teammate to invite.
      inviteRole:
        type: string
        description: Role to grant the invited member (admin, developer, viewer).
        default: developer
  steps:
  - stepId: createProject
    description: Create the monitoring project the team will be invited to.
    operationId: createProject
    parameters:
    - name: Treblle-Api-Key
      in: header
      value: $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      projectId: $response.body#/id
  - stepId: inviteMember
    description: Invite the teammate to the newly created project by email and role.
    operationId: inviteMember
    parameters:
    - name: Treblle-Api-Key
      in: header
      value: $inputs.apiKey
    - name: projectId
      in: path
      value: $steps.createProject.outputs.projectId
    requestBody:
      contentType: application/json
      payload:
        email: $inputs.inviteEmail
        role: $inputs.inviteRole
    successCriteria:
    - condition: $statusCode == 201
  - stepId: listMembers
    description: List the project's members to confirm the invitation took effect.
    operationId: listMembers
    parameters:
    - name: Treblle-Api-Key
      in: header
      value: $inputs.apiKey
    - name: projectId
      in: path
      value: $steps.createProject.outputs.projectId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      members: $response.body#/data
  outputs:
    projectId: $steps.createProject.outputs.projectId
    members: $steps.listMembers.outputs.members

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/treblle-onboard-project-and-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.