Infra · Arazzo Workflow

Onboard a user and grant destination access

Version 1.0.0

Create a user, put them in a group, and grant the group access to a destination.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub CompanyIdentityAccess ManagementAuthenticationAuthorizationInfrastructureKubernetesOIDCSecurityOpen-SourceArazzoWorkflows

Provider

infra

Workflows

onboardAndGrant
Create a user, add them to a group, and grant the group a privilege on a destination.
3 steps inputs: groupId, privilege, resource, userName outputs: grantId, userId
1
createUser
2
addToGroup
3
grantAccess

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Onboard a user and grant destination access
  version: 1.0.0
  summary: Create a user, put them in a group, and grant the group access to a destination.
sourceDescriptions:
- name: grantsApi
  url: ../openapi/infra-grants-api-openapi.yml
  type: openapi
- name: groupsApi
  url: ../openapi/infra-groups-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/infra-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboardAndGrant
  summary: Create a user, add them to a group, and grant the group a privilege on a destination.
  inputs:
    type: object
    properties:
      userName: {type: string}
      groupId: {type: string}
      privilege: {type: string}
      resource: {type: string}
  steps:
  - stepId: createUser
    operationId: CreateUser
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.userName
    outputs:
      userId: $response.body#/id
  - stepId: addToGroup
    operationId: UpdateUsersInGroup
    parameters:
    - name: id
      in: path
      value: $inputs.groupId
    requestBody:
      contentType: application/json
      payload:
        usersToAdd:
        - $steps.createUser.outputs.userId
  - stepId: grantAccess
    operationId: CreateGrant
    requestBody:
      contentType: application/json
      payload:
        group: $inputs.groupId
        privilege: $inputs.privilege
        resource: $inputs.resource
    outputs:
      grantId: $response.body#/id
  outputs:
    userId: $steps.createUser.outputs.userId
    grantId: $steps.grantAccess.outputs.grantId

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/infra-onboard-and-grant"
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 email required.

A second provider on the same verified email joins the account you already have.