Apigee · Arazzo Workflow

Apigee Onboard an App Group

Version 1.0.0

Create an app group, add a developer, register an app, and read the app back.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationMicroservicesMCPMonetizationArazzoWorkflows

Provider

apigee

Workflows

onboard-app-group
Create an app group and a developer, then register and read a developer app.
Creates an app group, registers a developer, creates a developer app, and reads the app to confirm its configuration.
4 steps inputs: appGroupName, appName, developerEmail, firstName, lastName, organizationId outputs: appGroupId, appId, developerId
1
createAppGroup
Create an app group to organize the developer and their applications.
2
createDeveloper
Register the developer that will be associated with the group.
3
createApp
Create a developer app for the registered developer.
4
getApp
Read the developer app to confirm its configuration and capture its generated id.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Apigee Onboard an App Group
  summary: Create an app group, add a developer, register an app, and read the app back.
  description: >-
    The app group onboarding flow for organizing developers and their
    applications. The workflow creates an app group, registers a developer,
    creates a developer app, and reads the app back to confirm its details.
    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-4270.40
  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-4270.40
      capability_name: Developer Identity & Credential Management
      spec: apigee-developers-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: appGroupsApi
  url: ../openapi/apigee-app-groups-api-openapi.yml
  type: openapi
- name: developerAppsApi
  url: ../openapi/apigee-developer-apps-api-openapi.yml
  type: openapi
- name: developersApi
  url: ../openapi/apigee-developers-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboard-app-group
  summary: Create an app group and a developer, then register and read a developer app.
  description: >-
    Creates an app group, registers a developer, creates a developer app, and
    reads the app to confirm its configuration.
  inputs:
    type: object
    required:
    - organizationId
    - appGroupName
    - developerEmail
    - firstName
    - lastName
    - appName
    properties:
      organizationId:
        type: string
        description: The Apigee organization to onboard into.
      appGroupName:
        type: string
        description: Display name for the new app group.
      developerEmail:
        type: string
        description: Email address used as the developer's unique identifier.
      firstName:
        type: string
        description: Developer first name.
      lastName:
        type: string
        description: Developer last name.
      appName:
        type: string
        description: Name of the developer app to create.
  steps:
  - stepId: createAppGroup
    description: >-
      Create an app group to organize the developer and their applications.
    operationId: createAppGroup
    parameters:
    - name: organizationId
      in: path
      value: $inputs.organizationId
    requestBody:
      contentType: application/json
      payload:
        displayName: $inputs.appGroupName
        status: active
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      appGroupId: $response.body#/appGroupId
  - stepId: createDeveloper
    description: >-
      Register the developer that will be associated with the group.
    operationId: createDeveloper
    parameters:
    - name: organizationId
      in: path
      value: $inputs.organizationId
    requestBody:
      contentType: application/json
      payload:
        email: $inputs.developerEmail
        firstName: $inputs.firstName
        lastName: $inputs.lastName
        userName: $inputs.developerEmail
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      developerId: $response.body#/developerId
  - stepId: createApp
    description: >-
      Create a developer app for the registered developer.
    operationId: createDeveloperApp
    parameters:
    - name: organizationId
      in: path
      value: $inputs.organizationId
    - name: developerId
      in: path
      value: $inputs.developerEmail
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.appName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      appId: $response.body#/appId
  - stepId: getApp
    description: >-
      Read the developer app to confirm its configuration and capture its
      generated id.
    operationId: getDeveloperApp
    parameters:
    - name: organizationId
      in: path
      value: $inputs.organizationId
    - name: developerId
      in: path
      value: $inputs.developerEmail
    - name: appId
      in: path
      value: $inputs.appName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      appName: $response.body#/name
  outputs:
    appGroupId: $steps.createAppGroup.outputs.appGroupId
    developerId: $steps.createDeveloper.outputs.developerId
    appId: $steps.createApp.outputs.appId

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/apigee-app-group-onboarding-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.