Appmixer · Arazzo Workflow

Appmixer Authenticate and List Flows

Version 1.0.0

Sign a user in, confirm the session, and list their flows.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub AgenticAutomationEmbedded iPaaSIntegrationLow-CodeWorkflowsArazzoWorkflows

Provider

appmixer

Workflows

authenticate-and-list-flows
Authenticate a user and return their flows.
Obtains a token, verifies the current user, and retrieves the paginated list of flows belonging to that user.
3 steps inputs: limit, password, username outputs: firstFlowId, token, userId
1
authenticate
Sign the user in to obtain an access token.
2
getCurrentUser
Confirm the active session by reading the current user.
3
listFlows
List the authenticated user's flows.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Appmixer Authenticate and List Flows
  summary: Sign a user in, confirm the session, and list their flows.
  description: >-
    A session-establishment pattern. The workflow authenticates a user with
    credentials to obtain an access token, confirms the active session by
    reading the current user, and then lists the user's flows using the token.
    The authentication step is open, while the session and listing steps inline
    the issued bearer token.
  version: 1.0.0
sourceDescriptions:
- name: authenticationApi
  url: ../openapi/appmixer-authentication-api-openapi.yml
  type: openapi
- name: flowsApi
  url: ../openapi/appmixer-flows-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/appmixer-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: authenticate-and-list-flows
  summary: Authenticate a user and return their flows.
  description: >-
    Obtains a token, verifies the current user, and retrieves the paginated
    list of flows belonging to that user.
  inputs:
    type: object
    required:
    - username
    - password
    properties:
      username:
        type: string
        description: The user's email address or username.
      password:
        type: string
        description: The user's password.
      limit:
        type: integer
        description: Maximum number of flows to return.
  steps:
  - stepId: authenticate
    description: Sign the user in to obtain an access token.
    operationId: authenticateUser
    requestBody:
      contentType: application/json
      payload:
        username: $inputs.username
        password: $inputs.password
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      token: $response.body#/token
  - stepId: getCurrentUser
    description: Confirm the active session by reading the current user.
    operationId: getCurrentUser
    parameters:
    - name: Authorization
      in: header
      value: Bearer $steps.authenticate.outputs.token
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userId: $response.body#/id
      username: $response.body#/username
  - stepId: listFlows
    description: List the authenticated user's flows.
    operationId: listFlows
    parameters:
    - name: Authorization
      in: header
      value: Bearer $steps.authenticate.outputs.token
    - name: limit
      in: query
      value: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstFlowId: $response.body#/0/id
  outputs:
    token: $steps.authenticate.outputs.token
    userId: $steps.getCurrentUser.outputs.userId
    firstFlowId: $steps.listFlows.outputs.firstFlowId

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/appmixer-authenticate-and-list-flows-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.